Skip to content

Commit

Permalink
Merge pull request #26 from nicholasruunu/master
Browse files Browse the repository at this point in the history
Removes 1 un-needed interation
  • Loading branch information
benhowdle89 committed Aug 5, 2015
2 parents 387ec39 + 94813f8 commit bb52c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svgeezy.js
Expand Up @@ -29,7 +29,7 @@ window.svgeezy = function() {
},

fallbacks: function() {
while(this.imgL--) {
while(--this.imgL) {
if(!this.hasClass(this.images[this.imgL], this.avoid) || !this.avoid) {
var src = this.images[this.imgL].getAttribute('src');
if(src === null) {
Expand Down

0 comments on commit bb52c11

Please sign in to comment.