소스 검색

Fixed typo with externalFinishedCallback

Dominic Szablewski 12 년 전
부모
커밋
fa5b754471
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      jsmpg.js

+ 1 - 1
jsmpg.js 파일 보기

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