Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
otto committed Aug 13, 2013
1 parent 9afb6e3 commit 5c6d3b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/jquery-supergallery-plugin2.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! jQuery Supergallery Plugin2 2013-08-08
/*! jQuery Supergallery Plugin2 2013-08-13
* Vertion : 1.3.1
* Dependencies : jQuery 1.8.0 - 2.0.3
* Author : Otto Kamiya (MegazalRock)
Expand Down Expand Up @@ -63,7 +63,7 @@
this.length = this.num;
this.canUseCss3Transition = (function(){
var body = document.body || document.documentElement,bodyStyle = body.style;
return bodyStyle.WebkitBackgroundSize !== undefined || bodyStyle.MozBackgroundSize !== undefined || bodyStyle.OBackgroundSize !== undefined || bodyStyle.backgroundSize !== undefined;
return bodyStyle.WebkitTransition !== undefined || bodyStyle.MozTransition !== undefined || bodyStyle.OTransition !== undefined || bodyStyle.transition !== undefined;
})();
this.init();
};
Expand Down

0 comments on commit 5c6d3b2

Please sign in to comment.