Skip to content

Instantly share code, notes, and snippets.

@4knort
Created February 28, 2016 21:11
Show Gist options
  • Save 4knort/82ecf040f03189682898 to your computer and use it in GitHub Desktop.
Save 4knort/82ecf040f03189682898 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;
} else {
return -1;
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment