| Index: ui/file_manager/file_manager/foreground/js/ui/file_manager_ui.js
|
| diff --git a/ui/file_manager/file_manager/foreground/js/ui/file_manager_ui.js b/ui/file_manager/file_manager/foreground/js/ui/file_manager_ui.js
|
| index edb3dc2a3e88c3e672a4406e13247017e6d3c1fc..3fe01ffb856d5378fe4bc991fd9a3a53c12ebbc0 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/ui/file_manager_ui.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/ui/file_manager_ui.js
|
| @@ -221,13 +221,13 @@ FileManagerUI.prototype.setCurrentListType = function(listType) {
|
|
|
| switch (listType) {
|
| case ListContainer.ListType.DETAIL:
|
| - this.toggleViewButton.classList.add('table');
|
| - this.toggleViewButton.classList.remove('grid');
|
| + this.toggleViewButton.classList.remove('table');
|
| + this.toggleViewButton.classList.add('grid');
|
| break;
|
|
|
| case ListContainer.ListType.THUMBNAIL:
|
| - this.toggleViewButton.classList.add('grid');
|
| - this.toggleViewButton.classList.remove('table');
|
| + this.toggleViewButton.classList.remove('grid');
|
| + this.toggleViewButton.classList.add('table');
|
| break;
|
|
|
| default:
|
|
|