summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/resources/options/personal_options.js17
1 files changed, 5 insertions, 12 deletions
diff --git a/chrome/browser/resources/options/personal_options.js b/chrome/browser/resources/options/personal_options.js
index a1fa4de..4ffd2b9 100644
--- a/chrome/browser/resources/options/personal_options.js
+++ b/chrome/browser/resources/options/personal_options.js
@@ -46,18 +46,11 @@ cr.define('options', function() {
}
});
-
- if(cr.isMac) {
- $('showpasswords').onclick = function(event) {
- //TODO(sargrass): Add the Mac implementation
- }
- } else {
- $('showpasswords').onclick = function(event) {
- PasswordsExceptions.load();
- OptionsPage.showPageByName('passwordsExceptions');
- OptionsPage.showTab($('passwords-nav-tab'));
- };
- }
+ $('showpasswords').onclick = function(event) {
+ PasswordsExceptions.load();
+ OptionsPage.showPageByName('passwordsExceptions');
+ OptionsPage.showTab($('passwords-nav-tab'));
+ };
$('autofill_options').onclick = function(event) {
OptionsPage.showPageByName('autoFillOptions');