Merge pull request #11429 from nextcloud/feature/11033/bump_strengthify
Bump strengthify
This commit is contained in:
commit
3182b8b063
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "strengthify",
|
||||
"version": "0.5.3",
|
||||
"version": "0.5.4",
|
||||
"homepage": "https://github.com/MorrisJobke/strengthify",
|
||||
"authors": [
|
||||
"Eve Ragins <eve.ragins@eve-corp.com",
|
||||
|
@ -9,11 +9,11 @@
|
|||
"description": "Combine jQuery and zxcvbn to create a password strength meter.",
|
||||
"main": "jquery.strengthify.js",
|
||||
"license": "MIT",
|
||||
"_release": "0.5.3",
|
||||
"_release": "0.5.4",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "0.5.3",
|
||||
"commit": "a97e861762ccb17ce5f51d5c608b5d9e42732ae3"
|
||||
"tag": "0.5.4",
|
||||
"commit": "3d9759958558752d0c115774d2b0bc34fac7e31b"
|
||||
},
|
||||
"_source": "https://github.com/MorrisJobke/strengthify.git",
|
||||
"_target": "^0.5.3",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Strengthify - show the weakness of a password (uses zxcvbn for this)
|
||||
* https://github.com/MorrisJobke/strengthify
|
||||
*
|
||||
* Version: 0.5.2
|
||||
* Version: 0.5.4
|
||||
* Author: Morris Jobke (github.com/MorrisJobke) - original
|
||||
* Eve Ragins @ Eve Corp (github.com/eve-corp)
|
||||
*
|
||||
|
@ -90,6 +90,10 @@
|
|||
'"progid:DXImageTransform.Microsoft.Alpha(Opacity=' + opacity * 100 + ')"'
|
||||
);
|
||||
|
||||
if (options.onResult) {
|
||||
options.onResult(result);
|
||||
}
|
||||
|
||||
// style strengthify bar
|
||||
// possible scores: 0-4
|
||||
switch (result.score) {
|
||||
|
@ -203,13 +207,11 @@
|
|||
|
||||
$elem.parent().on('scroll', drawSelf);
|
||||
|
||||
$.ajax({
|
||||
cache: true,
|
||||
url: options.zxcvbn
|
||||
}).done(function(content) {
|
||||
eval(content);
|
||||
var script = document.createElement("script");
|
||||
script.src = options.zxcvbn;
|
||||
document.head.appendChild(script);
|
||||
|
||||
$elem.bind('keyup input change', drawSelf);
|
||||
});
|
||||
};
|
||||
|
||||
init.call(this);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* Strengthify - show the weakness of a password (uses zxcvbn for this)
|
||||
* https://github.com/MorrisJobke/strengthify
|
||||
* Version: 0.5.2
|
||||
* Version: 0.5.4
|
||||
* License: The MIT License (MIT)
|
||||
* Copyright (c) 2013-2016 Morris Jobke <morris.jobke@gmail.com>
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue