Skip to content

Instantly share code, notes, and snippets.

@hadijaveed
Created October 18, 2016 20:10
Show Gist options
  • Save hadijaveed/a9ea60064b112120ac82b61df26edc7d to your computer and use it in GitHub Desktop.
Save hadijaveed/a9ea60064b112120ac82b61df26edc7d to your computer and use it in GitHub Desktop.
ReactiveHbs.promises({
getAllUsers() {
return $.get('https://api.github.com/users');
},
});
// usage
ReactiveHbs.executePromise('getAllUsers', (err, data) => {
if ( !err ) console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment