/example.js Secret
Created
June 20, 2013 01:45
Revisions
-
evernotegists created this gist
Jun 20, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ function stopSharingSingleNote(noteStore, noteGuid, callback) { noteStore.stopSharingNote(noteGuid, function(obj) { if (obj && obj.errorCode) { console.log(obj); } else { callback(noteGuid); } }); }