-
-
Save rafaelss/20a4f3517f228c3e7404 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input.on("autocompleteselect", (function(self) { | |
return function(ev, ui) { | |
self.organizationId = ui.item.value; | |
self._enableContinue(); | |
} | |
})(this)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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