Quellcode durchsuchen

remove pointless .call()

Hakim El Hattab vor 10 Jahren
Ursprung
Commit
2bed5833ca
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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();
 			}
 		}