Skip to content

Instantly share code, notes, and snippets.

@rtivital
Forked from 4knort/sdf.js
Created February 28, 2016 21:12
Show Gist options
  • Save rtivital/c2df90baec5271b64969 to your computer and use it in GitHub Desktop.
Save rtivital/c2df90baec5271b64969 to your computer and use it in GitHub Desktop.
Gallery.prototype.getPictureNumber = function(url) {
for (var i = 0; i < this.pictures.length; i++) {
if (url === this.pictures[i].url) {
this.currentPicture = i;
return i;
}
}
return -1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment