| Index: ui/file_manager/video_player/js/media_controls.js
|
| diff --git a/ui/file_manager/video_player/js/media_controls.js b/ui/file_manager/video_player/js/media_controls.js
|
| index 8d63495b2e60d3e47deef5da9cfb806d94d8ee51..6b40c59c5dfcbc032cf9c33db31ccd3bfc46ad4a 100644
|
| --- a/ui/file_manager/video_player/js/media_controls.js
|
| +++ b/ui/file_manager/video_player/js/media_controls.js
|
| @@ -261,13 +261,13 @@ MediaControls.prototype.onProgressDrag_ = function(on) {
|
|
|
| if (on) {
|
| this.resumeAfterDrag_ = this.isPlaying();
|
| - this.media_.pause();
|
| + this.media_.pause(true /* seeking */);
|
| } else {
|
| if (this.resumeAfterDrag_) {
|
| if (this.media_.ended)
|
| this.onMediaPlay_(false);
|
| else
|
| - this.media_.play();
|
| + this.media_.play(true /* seeking */);
|
| }
|
| this.updatePlayButtonState_(this.isPlaying());
|
| }
|
|
|