Update strengthify

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2018-10-03 16:03:23 +02:00
parent 893d2daece
commit 24c74b3db9
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
4 changed files with 13 additions and 9 deletions

View File

@ -31,7 +31,7 @@
"moment": "^2.15.0",
"select2": "~3.4.8",
"snapjs": "~2.0.0-rc1",
"strengthify": "^0.5.3",
"strengthify": "^0.5.5",
"underscore": "~1.8.0",
"zxcvbn": "*"
}

View File

@ -1,6 +1,6 @@
{
"name": "strengthify",
"version": "0.5.4",
"version": "0.5.5",
"homepage": "https://github.com/MorrisJobke/strengthify",
"authors": [
"Eve Ragins <eve.ragins@eve-corp.com",
@ -9,13 +9,13 @@
"description": "Combine jQuery and zxcvbn to create a password strength meter.",
"main": "jquery.strengthify.js",
"license": "MIT",
"_release": "0.5.4",
"_release": "0.5.5",
"_resolution": {
"type": "version",
"tag": "0.5.4",
"commit": "3d9759958558752d0c115774d2b0bc34fac7e31b"
"tag": "0.5.5",
"commit": "5fa214146e2c7760046fb6c2e01aa9b02759e7d6"
},
"_source": "https://github.com/MorrisJobke/strengthify.git",
"_target": "^0.5.3",
"_target": "^0.5.5",
"_originalSource": "strengthify"
}

View File

@ -2,7 +2,7 @@
* Strengthify - show the weakness of a password (uses zxcvbn for this)
* https://github.com/MorrisJobke/strengthify
*
* Version: 0.5.4
* Version: 0.5.5
* Author: Morris Jobke (github.com/MorrisJobke) - original
* Eve Ragins @ Eve Corp (github.com/eve-corp)
*
@ -52,7 +52,8 @@
drawTitles: false,
drawMessage: false,
drawBars: true,
$addAfter: null
$addAfter: null,
nonce: null
};
return this.each(function() {
@ -209,6 +210,9 @@
var script = document.createElement("script");
script.src = options.zxcvbn;
if (options.nonce !== null) {
script.nonce = options.nonce;
}
document.head.appendChild(script);
$elem.bind('keyup input change', drawSelf);

View File

@ -1,7 +1,7 @@
/**
* Strengthify - show the weakness of a password (uses zxcvbn for this)
* https://github.com/MorrisJobke/strengthify
* Version: 0.5.4
* Version: 0.5.5
* License: The MIT License (MIT)
* Copyright (c) 2013-2016 Morris Jobke <morris.jobke@gmail.com>
*/