| 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 acf7b8d3eeb4aa115c9732ece0e37af4829ec86b..1b91a1f057412f4d927e2a090cda39cd75b52dc8 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() {
|
| @@ -976,7 +982,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.
|
|
|