Skip to content

Instantly share code, notes, and snippets.

@wanderview
Created August 6, 2013 16:58
Show Gist options
  • Save wanderview/6166371 to your computer and use it in GitHub Desktop.
Save wanderview/6166371 to your computer and use it in GitHub Desktop.
enterSelectMode() idea
// ids being exported by a timer loop
var exporting = [];
var gotSomeIds = function(ids) {
if (!ids) {
// selection done... we can finalize export
}
Array.prototype.push.apply(exporting, ids);
};
enterSelectMode(gotSomeIds);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment