Remove the options page for now from the extension.
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 30 Jun 2012 20:12:05 +0000 (16:12 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 30 Jun 2012 20:12:05 +0000 (16:12 -0400)
manifest.json
options.js

index c134d2e41a6b279688d2d7cb9a6f1457e18adf0e..c80c607d7049ff582f68d80b4c00f6384c3e3322 100644 (file)
@@ -16,7 +16,5 @@
     "default_title": "Skeleton Key",
     "default_popup": "core.html",
     "default_icon": "icon19.png"
-  },
-
-  "options_page": "options.html"
+  }
 }
index 4d2e2452ea2ddfb39713f7241eeb275b30472498..c2bac05dd73a22e9f1014bc06711f46c89bf4bac 100644 (file)
@@ -44,6 +44,9 @@ var SkeletonKeyOptions = SkeletonKeyOptions || function(doc, win) {
   if (win) {
     this._storage = win.localStorage;
   }
+  if (this._maxLength) {
+    this._maxLength.value = this.getMaximumPasswordLength();
+  }
 };
 
 /**