Browse Source

remove pointless .call()

Hakim El Hattab 11 năm trước cách đây
mục cha
commit
2bed5833ca
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      plugin/math/math.js

+ 1 - 1
plugin/math/math.js

@@ -52,7 +52,7 @@ var RevealMath = window.RevealMath || (function(){
 		// IE
 		script.onreadystatechange = function() {
 			if ( this.readyState === 'loaded' ) {
-				finish.call();
+				finish();
 			}
 		}