Skip to content

Commit 1c978a0

Browse files
committed
Merge pull request #226 from dvdarkin/master
A small bugfix for minified version of this plugin
2 parents cd381e5 + 324b758 commit 1c978a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery.transit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@
666666
// Defer running. This allows the browser to paint any pending CSS it hasn't
667667
// painted yet before doing the transitions.
668668
var deferredRun = function(next) {
669-
this.offsetWidth; // force a repaint
669+
this.offsetWidth = this.offsetWidth; // force a repaint
670670
run(next);
671671
};
672672

0 commit comments

Comments
 (0)