| Index: chrome/browser/resources/file_manager/mediaplayer.html
|
| diff --git a/chrome/browser/resources/file_manager/mediaplayer.html b/chrome/browser/resources/file_manager/mediaplayer.html
|
| index 00caf24742ebceade4dd5c3535b46972720c1079..0915f8fb9098e77ff0724dcb2b9b3e1dabedae27 100644
|
| --- a/chrome/browser/resources/file_manager/mediaplayer.html
|
| +++ b/chrome/browser/resources/file_manager/mediaplayer.html
|
| @@ -603,7 +603,9 @@ HidingControlsAnimation.prototype = {
|
|
|
| function setupPlaybackControls() {
|
| var element = $('playercontrols');
|
| - playercontrols.innerHTML = ''; // clear out other
|
| + while (playercontrols.firstChild) {
|
| + playercontrols.removeChild(playercontrols.firstChild);
|
| + }
|
| var controlsclass = '';
|
| if (hidingControlsAnimation) {
|
| hidingControlsAnimation.cleanup();
|
|
|