| Index: chrome/browser/resources/file_manager/js/file_manager.js
|
| diff --git a/chrome/browser/resources/file_manager/js/file_manager.js b/chrome/browser/resources/file_manager/js/file_manager.js
|
| index 3c517ef56be058fb2a20d98edd7e2ab3c17ded1e..92ebd5565e9776a10a99ed062ee748a6769f8080 100644
|
| --- a/chrome/browser/resources/file_manager/js/file_manager.js
|
| +++ b/chrome/browser/resources/file_manager/js/file_manager.js
|
| @@ -1967,7 +1967,7 @@ DialogType.isModal = function(type) {
|
| var rootPath = PathUtil.getRootPath(path);
|
| this.document_.title = PathUtil.getRootLabel(rootPath) +
|
| path.substring(rootPath.length);
|
| - },
|
| + };
|
|
|
| /**
|
| * Updates search box value when directory gets changed.
|
| @@ -1976,7 +1976,7 @@ DialogType.isModal = function(type) {
|
| var searchBox = this.dialogDom_.querySelector('#search-box');
|
| if (!searchBox.disabled)
|
| searchBox.value = '';
|
| - },
|
| + };
|
|
|
| /**
|
| * Update the UI when the current directory changes.
|
| @@ -2349,7 +2349,7 @@ DialogType.isModal = function(type) {
|
| this.dialogDom_.removeAttribute('ctrl-pressing');
|
| return;
|
| }
|
| - }
|
| + };
|
|
|
| /**
|
| * KeyDown event handler for the div#list-container element.
|
| @@ -2501,7 +2501,7 @@ DialogType.isModal = function(type) {
|
| } else {
|
| callback(fileUrls);
|
| }
|
| - },
|
| + };
|
|
|
| /**
|
| * Closes this modal dialog with some files selected.
|
|
|