Skip to content
Snippets Groups Projects
Commit cd4fbf70 authored by Demian Katz's avatar Demian Katz
Browse files

Less confusing syntax.

parent ae4d75db
No related merge requests found
...@@ -4,7 +4,7 @@ function toggleCollectionInfo() { ...@@ -4,7 +4,7 @@ function toggleCollectionInfo() {
function showMoreInfoToggle() { function showMoreInfoToggle() {
// no rows in table? don't bother! // no rows in table? don't bother!
if (!$("#collectionInfo").find('tr').length > 0) { if ($("#collectionInfo").find('tr').length < 1) {
return; return;
} }
toggleCollectionInfo(); toggleCollectionInfo();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment