Browse Source

Fixed typo with externalFinishedCallback

Dominic Szablewski 12 years ago
parent
commit
fa5b754471
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jsmpg.js

+ 1 - 1
jsmpg.js View File

389
 		else if( code == BitReader.NOT_FOUND ) {
389
 		else if( code == BitReader.NOT_FOUND ) {
390
 			this.stop(); // Jump back to the beginning
390
 			this.stop(); // Jump back to the beginning
391
 
391
 
392
-			if( this.this.externalFinishedCallback ) {
392
+			if( this.externalFinishedCallback ) {
393
 				this.externalFinishedCallback(this);
393
 				this.externalFinishedCallback(this);
394
 			}
394
 			}
395
 
395