Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Unified Diff: ui/file_manager/file_manager/foreground/js/ui/location_line.js

Issue 2795953002: Change the selectors position in Save as dialog and make it focusable. (Closed)
Patch Set: Fix -webkit property ordering. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/file_manager/file_manager/foreground/js/ui/location_line.js
diff --git a/ui/file_manager/file_manager/foreground/js/ui/location_line.js b/ui/file_manager/file_manager/foreground/js/ui/location_line.js
index 4a725c2186741e9cdae44175fc2f59adb486303f..d838a01139c03f13a82d449d5f015993e793b341 100644
--- a/ui/file_manager/file_manager/foreground/js/ui/location_line.js
+++ b/ui/file_manager/file_manager/foreground/js/ui/location_line.js
@@ -163,7 +163,7 @@ LocationLine.prototype.update_ = function(components) {
for (var el = this.breadcrumbs_.firstChild; el; el = el.nextSibling) {
if (el.classList.contains('breadcrumb-path')) {
var isLast = !el.nextSibling;
- el.tabIndex = isLast ? -1 : 8;
+ el.tabIndex = isLast ? -1 : 9;
el.classList.toggle('breadcrumb-last', isLast);
}
}

Powered by Google App Engine
This is Rietveld 408576698