Created
October 3, 2018 10:50
-
-
Save zappingseb/93009ba6800b13c288a090fcac4dd541 to your computer and use it in GitHub Desktop.
This file contains 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
subscribe: function(el, callback) { | |
// the jQuery "change" function allows you | |
// to notice any change to your input elements | |
$(el).on('change.input', function(event) { | |
callback(false); | |
// When called with false, it will NOT use the rate policy, | |
// so changes will be sent immediately | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment