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

Added missing global; moved delete-specific logic from reSortGroups() to deleteGroup().

parent 86b00f60
No related merge requests found
/*global deleteSearchGroupString, searchFieldLabel, searchFields, searchJoins, searchLabel, searchMatch*/ /*global addSearchString, deleteSearchGroupString, searchFieldLabel, searchFields, searchJoins, searchLabel, searchMatch*/
var nextGroupNumber = 0; var nextGroupNumber = 0;
var groupSearches = []; var groupSearches = [];
...@@ -109,11 +109,6 @@ function reSortGroups() ...@@ -109,11 +109,6 @@ function reSortGroups()
$("#groupJoin").show(); $("#groupJoin").show();
$("#delete_link_0").show(); $("#delete_link_0").show();
} }
// If the last group was removed, add an empty group
if (nextGroupNumber == 0) {
addGroup();
}
} }
function addGroup(firstTerm, firstField, join) function addGroup(firstTerm, firstField, join)
...@@ -171,6 +166,10 @@ function deleteGroup(group) ...@@ -171,6 +166,10 @@ function deleteGroup(group)
$("#group" + group).remove(); $("#group" + group).remove();
// And keep the page in order // And keep the page in order
reSortGroups(); reSortGroups();
// If the last group was removed, add an empty group
if (nextGroupNumber == 0) {
addGroup();
}
} }
// Fired by onclick event // Fired by onclick event
......
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