"select2": "~3.4.8",
"zxcvbn": "*",
"snapjs": "~2.0.0-rc1",
- "strengthify": "^0.5.1",
+ "strengthify": "^0.5.2",
"underscore": "~1.8.0",
"bootstrap": "~3.3.6",
"backbone": "~1.2.3",
!DOMPurify/dist/purify.min.js
!DOMPurify/.bower.json
!DOMPurify/LICENSE
+
+# strengthify
+strengthify/examples.html
+strengthify/examples.png
{
"name": "strengthify",
- "version": "0.5.1",
+ "version": "0.5.2",
"homepage": "https://github.com/MorrisJobke/strengthify",
"authors": [
"Eve Ragins <eve.ragins@eve-corp.com",
"description": "Combine jQuery and zxcvbn to create a password strength meter.",
"main": "jquery.strengthify.js",
"license": "MIT",
- "_release": "0.5.1",
+ "_release": "0.5.2",
"_resolution": {
"type": "version",
- "tag": "0.5.1",
- "commit": "fd8bc41992bb37e16495a8e4c266951b93f8467d"
+ "tag": "0.5.2",
+ "commit": "82d63c39de1b7b60ae38d24d0f866cba325904b5"
},
"_source": "https://github.com/MorrisJobke/strengthify.git",
- "_target": "^0.5.1",
+ "_target": "^0.5.2",
"_originalSource": "strengthify"
}
\ No newline at end of file
* Strengthify - show the weakness of a password (uses zxcvbn for this)
* https://github.com/MorrisJobke/strengthify
*
- * Version: 0.5.1
+ * Version: 0.5.2
* Author: Morris Jobke (github.com/MorrisJobke) - original
* Eve Ragins @ Eve Corp (github.com/eve-corp)
*
css = 'password-good';
bsLevel = 'info';
message = "Getting better.";
+ break;
case 4:
css = 'password-good';
bsLevel = 'success';
$.ajax({
cache: true,
- dataType: 'script',
url: options.zxcvbn
- }).done(function() {
+ }).done(function(content) {
+ eval(content);
$elem.bind('keyup input change', drawSelf);
});
};
/**
* Strengthify - show the weakness of a password (uses zxcvbn for this)
* https://github.com/MorrisJobke/strengthify
- * Version: 0.5.1
+ * Version: 0.5.2
* License: The MIT License (MIT)
* Copyright (c) 2013-2016 Morris Jobke <morris.jobke@gmail.com>
*/