Skip to content

Commit

Permalink
[#1006] Fixed failure in lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mjschranz committed Jun 17, 2012
1 parent 33b1275 commit 19f198c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/player/popcorn.player.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@
"mp4": "video/mp4",
"mp3": "audio/mp3"
},
options = options || {};
_options = options || {};

var canPlayType = function( type ) {

Expand Down Expand Up @@ -442,7 +442,7 @@

target = document.createElement( !!audioExtensionRegexp.exec( firstSrc ) ? elementTypes[ 0 ] : elementTypes[ 1 ] );

if ( options.controls ) {
if ( _options.controls ) {
target.controls = true;
}

Expand Down

0 comments on commit 19f198c

Please sign in to comment.