Skip to content

Commit

Permalink
Merge pull request videojs#137 from bclwhitaker/bugfix/paused
Browse files Browse the repository at this point in the history
Fix for videojs#136. Default paused to true.
  • Loading branch information
dmlap committed Jan 22, 2015
2 parents 15b06a4 + 081d38f commit 330235f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/videojs/VideoJSModel.as
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ package com.videojs{
if(_provider){
return _provider.paused;
}
return false;
return true;
}

/**
Expand Down

0 comments on commit 330235f

Please sign in to comment.