Skip to content

Commit

Permalink
Adding dist files to release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Sparacio committed Apr 21, 2016
1 parent b1d8ed7 commit c5793a6
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions dist/dash.all.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -9345,7 +9345,7 @@ var _dashUtilsTimelineConverterJs2 = _interopRequireDefault(_dashUtilsTimelineCo
*/
function MediaPlayer() {

var VERSION = '2.1.0';
var VERSION = '2.1.1';
var PLAYBACK_NOT_INITIALIZED_ERROR = 'You must first call play() to init playback before calling this method';
var ELEMENT_NOT_ATTACHED_ERROR = 'You must first call attachView() to set the video element before calling this method';
var SOURCE_NOT_ATTACHED_ERROR = 'You must first call attachSource() with a valid source before calling this method';
Expand Down Expand Up @@ -18154,7 +18154,7 @@ function PlaybackController() {
var bufferedStart = Math.max(ranges.start(0), streamInfo.start);
var earliestTime = commonEarliestTime[streamInfo.id] === undefined ? bufferedStart : Math.max(commonEarliestTime[streamInfo.id], bufferedStart);
if (earliestTime === commonEarliestTime[streamInfo.id]) return;
if (!isDynamic && getStreamStartTime(true) < earliestTime) {
if (!isDynamic && getStreamStartTime(true) < earliestTime && getTime() < earliestTime) {
seek(earliestTime);
}
commonEarliestTime[streamInfo.id] = earliestTime;
Expand Down
6 changes: 3 additions & 3 deletions dist/dash.all.debug.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dash.all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.all.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dash.mediaplayer.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -9103,7 +9103,7 @@ var _dashUtilsTimelineConverterJs2 = _interopRequireDefault(_dashUtilsTimelineCo
*/
function MediaPlayer() {

var VERSION = '2.1.0';
var VERSION = '2.1.1';
var PLAYBACK_NOT_INITIALIZED_ERROR = 'You must first call play() to init playback before calling this method';
var ELEMENT_NOT_ATTACHED_ERROR = 'You must first call attachView() to set the video element before calling this method';
var SOURCE_NOT_ATTACHED_ERROR = 'You must first call attachSource() with a valid source before calling this method';
Expand Down Expand Up @@ -17778,7 +17778,7 @@ function PlaybackController() {
var bufferedStart = Math.max(ranges.start(0), streamInfo.start);
var earliestTime = commonEarliestTime[streamInfo.id] === undefined ? bufferedStart : Math.max(commonEarliestTime[streamInfo.id], bufferedStart);
if (earliestTime === commonEarliestTime[streamInfo.id]) return;
if (!isDynamic && getStreamStartTime(true) < earliestTime) {
if (!isDynamic && getStreamStartTime(true) < earliestTime && getTime() < earliestTime) {
seek(earliestTime);
}
commonEarliestTime[streamInfo.id] = earliestTime;
Expand Down
6 changes: 3 additions & 3 deletions dist/dash.mediaplayer.debug.js.map

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/dash.mediaplayer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dash.mediaplayer.min.js.map

Large diffs are not rendered by default.

0 comments on commit c5793a6

Please sign in to comment.