Skip to content

Commit

Permalink
Merge and resolve conflicts to be ready for pull request merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Leemans committed Oct 26, 2014
2 parents 0a8c30a + 1bcd059 commit ffa11fe
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/minplayer.compressed.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion bin/minplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3439,7 +3439,7 @@ minplayer.players = minplayer.players || {};
minplayer.players.dailymotion = function(context, options, queue) {

/** The quality of the Dailymotion stream. */
this.quality = 'default';
this.quality = '380';

// Derive from players base.
minplayer.players.base.call(this, context, options, queue);
Expand Down Expand Up @@ -3742,6 +3742,7 @@ minplayer.players.dailymotion.prototype.pause = function(callback) {
minplayer.players.dailymotion.prototype.stop = function(callback) {
minplayer.players.base.prototype.stop.call(this, function() {
this.player.pause();
this.player.seek(0);
if (callback) {
callback.call(this);
}
Expand Down
2 changes: 1 addition & 1 deletion bin/minplayer.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/minplayer.players.dailymotion.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ minplayer.players = minplayer.players || {};
minplayer.players.dailymotion = function(context, options, queue) {

/** The quality of the Dailymotion stream. */
this.quality = 'default';
this.quality = '380';

// Derive from players base.
minplayer.players.base.call(this, context, options, queue);
Expand Down Expand Up @@ -321,6 +321,7 @@ minplayer.players.dailymotion.prototype.pause = function(callback) {
minplayer.players.dailymotion.prototype.stop = function(callback) {
minplayer.players.base.prototype.stop.call(this, function() {
this.player.pause();
this.player.seek(0);
if (callback) {
callback.call(this);
}
Expand Down

0 comments on commit ffa11fe

Please sign in to comment.