Skip to content

Instantly share code, notes, and snippets.

@rafaelss
Last active September 1, 2015 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelss/20a4f3517f228c3e7404 to your computer and use it in GitHub Desktop.
Save rafaelss/20a4f3517f228c3e7404 to your computer and use it in GitHub Desktop.
input.on("autocompleteselect", (function(self) {
return function(ev, ui) {
self.organizationId = ui.item.value;
self._enableContinue();
}
})(this));
var self = this;
input.on("autocompleteselect", function(ev, ui) {
self.organizationId = ui.item.value;
self._enableContinue();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment