Merge pull request #296 from rcutmore/add-campaign-groups

Add selected group hint in campaign modal
pull/297/head
Jordan Wright 2016-06-11 18:12:41 -05:00 committed by GitHub
commit 83f221e226
1 changed files with 4 additions and 2 deletions

View File

@ -316,7 +316,7 @@ $(document).ready(function() {
}); });
// Clear user input. // Clear user input.
$("#groupSelect").val(""); $("#groupSelect").typeahead('val', "");
return false; return false;
}); });
// Create the group typeahead objects // Create the group typeahead objects
@ -351,7 +351,9 @@ $(document).ready(function() {
} }
}) })
.bind('typeahead:select', function(ev, group) { .bind('typeahead:select', function(ev, group) {
$("#groupSelect").typeahead('val', group.name) // Add selected group.
$("#groupSelect").typeahead('val', group.name);
$("#groupForm").submit();
}) })
.bind('typeahead:autocomplete', function(ev, group) { .bind('typeahead:autocomplete', function(ev, group) {
$("#groupSelect").typeahead('val', group.name) $("#groupSelect").typeahead('val', group.name)