| Index: ui/file_manager/file_manager/foreground/js/file_manager.js
|
| diff --git a/ui/file_manager/file_manager/foreground/js/file_manager.js b/ui/file_manager/file_manager/foreground/js/file_manager.js
|
| index 4d1fdf1fccffb08b140de722e7f14866447b7e26..150cb8cb7d4e69746a48ea5e30413df13c720d68 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/file_manager.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/file_manager.js
|
| @@ -341,6 +341,12 @@ FileManager.prototype = /** @struct */ {
|
| return this.taskController_;
|
| },
|
| /**
|
| + * @return {SpinnerController}
|
| + */
|
| + get spinnerController() {
|
| + return this.spinnerController_;
|
| + },
|
| + /**
|
| * @return {FileOperationManager}
|
| */
|
| get fileOperationManager() {
|
| @@ -975,7 +981,7 @@ FileManager.prototype = /** @struct */ {
|
|
|
| // Create spinner controller.
|
| this.spinnerController_ = new SpinnerController(
|
| - this.ui_.listContainer.spinner, this.directoryModel_);
|
| + this.ui_.listContainer.spinner);
|
| this.spinnerController_.show();
|
|
|
| // Create dialog action controller.
|
|
|