Index: chrome/browser/resources/options/manage_profile_overlay.js |
=================================================================== |
--- chrome/browser/resources/options/manage_profile_overlay.js (revision 235678) |
+++ chrome/browser/resources/options/manage_profile_overlay.js (working copy) |
@@ -128,7 +128,12 @@ |
chrome.send('requestHasProfileShortcuts', [profileInfo.filePath]); |
} |
- $('manage-profile-name').focus(); |
+ var manageNameField = $('manage-profile-name'); |
+ // Supervised users cannot edit their names. |
+ if (manageNameField.disabled) |
+ $('manage-profile-ok').focus(); |
+ else |
+ manageNameField.focus(); |
}, |
/** |