remove pointless .call()

This commit is contained in:
Hakim El Hattab 2013-08-16 09:30:22 -04:00
parent ead85fd475
commit 2bed5833ca
1 changed files with 1 additions and 1 deletions

View File

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