浏览代码

remove pointless .call()

Hakim El Hattab 10 年之前
父节点
当前提交
2bed5833ca
共有 1 个文件被更改,包括 1 次插入1 次删除
  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();
 			}
 		}