diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-08-16 09:30:22 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-08-16 09:30:22 -0400 |
commit | 2bed5833ca87d7f127513acabee05971277e0f94 (patch) | |
tree | 757f7fc5cd5acb8da8d12fcf5e98bb0151689a0d /plugin/math | |
parent | ead85fd4757f7677a4712ec7140df624888ead80 (diff) | |
download | fosdem-2018-presentation-2bed5833ca87d7f127513acabee05971277e0f94.tar fosdem-2018-presentation-2bed5833ca87d7f127513acabee05971277e0f94.tar.gz |
remove pointless .call()
Diffstat (limited to 'plugin/math')
-rwxr-xr-x | plugin/math/math.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/math/math.js b/plugin/math/math.js index 104d0e5..4e3402e 100755 --- a/plugin/math/math.js +++ b/plugin/math/math.js @@ -52,7 +52,7 @@ var RevealMath = window.RevealMath || (function(){ // IE script.onreadystatechange = function() { if ( this.readyState === 'loaded' ) { - finish.call(); + finish(); } } |