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

Unified Diff: chrome/browser/resources/shared/js/cr/ui/dialogs.js

Issue 10409093: [FileBrowser] Fixed tab navigation for detail-thumbnail-settings buttons. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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: chrome/browser/resources/shared/js/cr/ui/dialogs.js
diff --git a/chrome/browser/resources/shared/js/cr/ui/dialogs.js b/chrome/browser/resources/shared/js/cr/ui/dialogs.js
index 648f9c8cc87ce11cd34ee62e02118551391f823e..516ca18453e3f4d0f504b5412b6266a48836b0d4 100644
--- a/chrome/browser/resources/shared/js/cr/ui/dialogs.js
+++ b/chrome/browser/resources/shared/js/cr/ui/dialogs.js
@@ -201,7 +201,7 @@ cr.define('cr.ui.dialogs', function() {
for (var i = 0; i < this.deactivatedNodes_.length; i++) {
var node = this.deactivatedNodes_[i];
if (this.tabIndexes_[i] === null)
- node.removeAttribute('tabidex');
+ node.removeAttribute('tabindex');
else
node.setAttribute('tabindex', this.tabIndexes_[i]);
}

Powered by Google App Engine
This is Rietveld 408576698