Created
December 17, 2018 12:37
-
-
Save oli-h/9628d4a6538fb2f7d702a184b4d1aa50 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
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