From dd7702d149ad4916e32345b82328bb1d843b34f3 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 30 Jun 2012 16:12:05 -0400 Subject: [PATCH] Remove the options page for now from the extension. --- manifest.json | 4 +--- options.js | 3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index c134d2e..c80c607 100644 --- a/manifest.json +++ b/manifest.json @@ -16,7 +16,5 @@ "default_title": "Skeleton Key", "default_popup": "core.html", "default_icon": "icon19.png" - }, - - "options_page": "options.html" + } } diff --git a/options.js b/options.js index 4d2e245..c2bac05 100644 --- a/options.js +++ b/options.js @@ -44,6 +44,9 @@ var SkeletonKeyOptions = SkeletonKeyOptions || function(doc, win) { if (win) { this._storage = win.localStorage; } + if (this._maxLength) { + this._maxLength.value = this.getMaximumPasswordLength(); + } }; /** -- 2.22.5