Skip to content

Instantly share code, notes, and snippets.

@oli-h
Created December 17, 2018 12:37
Show Gist options
  • Save oli-h/9628d4a6538fb2f7d702a184b4d1aa50 to your computer and use it in GitHub Desktop.
Save oli-h/9628d4a6538fb2f7d702a184b4d1aa50 to your computer and use it in GitHub Desktop.
Nook.listen('xyz',function(id, obj) {
// ...
});
//--------------------------------------------------------------------------------------------------------------
function updateXyz(id, obj) {
// ...
}
Nook.listen('xyz', updateXyz);
//--------------------------------------------------------------------------------------------------------------
function updateXyz(id, obj) {
// ...
}
Nook('xyz').onUpdate(updateXyz);
//--------------------------------------------------------------------------------------------------------------
function updateXyz(id, obj) {
// ...
}
Nook('xyz').onUpdate(updateXyz).onFetchFinished(...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment