Skip to content

Instantly share code, notes, and snippets.

@evernotegists
Created June 20, 2013 01:45

Revisions

  1. evernotegists created this gist Jun 20, 2013.
    9 changes: 9 additions & 0 deletions example.js
    Original 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);
    }
    });
    }