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 7b62e5b5a0da6fa71bf336097c29852242797082..7523a6e54de89f8a9b95b82e3b2d4fd28daf98e6 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 |
@@ -136,6 +136,14 @@ function FileManagerUI(element, launchParam) { |
queryRequiredElement(this.element, '#cancel-selection-button'); |
/** |
+ * The wrapper for the toolbar button to cancel selection. |
+ * @type {!HTMLElement} |
+ * @const |
+ */ |
+ this.cancelSelectionButtonWrapper = |
+ queryRequiredElement(this.element, '#cancel-selection-button-wrapper'); |
+ |
+ /** |
* The label showing how many files are selected. |
* @type {!HTMLElement} |
* @const |
@@ -144,6 +152,14 @@ function FileManagerUI(element, launchParam) { |
queryRequiredElement(this.element, '#files-selected-label'); |
/** |
+ * The navigation list. |
+ * @type {!HTMLElement} |
+ * @const |
+ */ |
+ this.dialogNavigationList = |
+ queryRequiredElement(this.element, '.dialog-navigation-list'); |
+ |
+ /** |
* Search box. |
* @type {!SearchBox} |
* @const |