Parcourir la source

remove pointless .call()

Hakim El Hattab il y a 10 ans
Parent
commit
2bed5833ca
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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();
 			}
 		}