Skip to content

Commit

Permalink
CHG: raise time between createStage and renderImage
Browse files Browse the repository at this point in the history
deatil:

if using fonticons zr-spin to customize loading indicator, the css3 animation may not work in safari, raise time between dom adding and animations
  • Loading branch information
tinyfive committed Aug 28, 2015
1 parent 3b180f2 commit a8d22b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/gallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Gallery = (function(superClass) {
});
});
};
})(this)), 5);
})(this)), 200);
};

Gallery.prototype._bind = function() {
Expand Down
2 changes: 1 addition & 1 deletion src/gallery.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class Gallery extends SimpleModule
@_initRoutate()
@gallery.one @util.transitionEnd(), (e) =>
@_zoomInPosition()
), 5
), 200


_bind: () ->
Expand Down

0 comments on commit a8d22b7

Please sign in to comment.