Add selected group hint in campaign modal

pull/296/head
Rob Cutmore 2016-06-11 12:30:26 -04:00
parent dff0e9ef25
commit aa8f80c694
1 changed files with 4 additions and 2 deletions

View File

@ -316,7 +316,7 @@ $(document).ready(function() {
});
// Clear user input.
$("#groupSelect").val("");
$("#groupSelect").typeahead('val', "");
return false;
});
// Create the group typeahead objects
@ -351,7 +351,9 @@ $(document).ready(function() {
}
})
.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) {
$("#groupSelect").typeahead('val', group.name)