File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed
Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 3131 "moment" : " ^2.15.0" ,
3232 "select2" : " ~3.4.8" ,
3333 "snapjs" : " ~2.0.0-rc1" ,
34- "strengthify" : " ^0.5.3 " ,
34+ "strengthify" : " ^0.5.5 " ,
3535 "underscore" : " ~1.8.0" ,
3636 "zxcvbn" : " *"
3737 }
Original file line number Diff line number Diff line change 11{
22 "name" : " strengthify" ,
3- "version" : " 0.5.4 " ,
3+ "version" : " 0.5.5 " ,
44 "homepage" : " https://github.com/MorrisJobke/strengthify" ,
55 "authors" : [
66 " Eve Ragins <eve.ragins@eve-corp.com" ,
99 "description" : " Combine jQuery and zxcvbn to create a password strength meter." ,
1010 "main" : " jquery.strengthify.js" ,
1111 "license" : " MIT" ,
12- "_release" : " 0.5.4 " ,
12+ "_release" : " 0.5.5 " ,
1313 "_resolution" : {
1414 "type" : " version" ,
15- "tag" : " 0.5.4 " ,
16- "commit" : " 3d9759958558752d0c115774d2b0bc34fac7e31b "
15+ "tag" : " 0.5.5 " ,
16+ "commit" : " 5fa214146e2c7760046fb6c2e01aa9b02759e7d6 "
1717 },
1818 "_source" : " https://github.com/MorrisJobke/strengthify.git" ,
19- "_target" : " ^0.5.3 " ,
19+ "_target" : " ^0.5.5 " ,
2020 "_originalSource" : " strengthify"
2121}
Original file line number Diff line number Diff line change 22 * Strengthify - show the weakness of a password (uses zxcvbn for this)
33 * https://github.com/MorrisJobke/strengthify
44 *
5- * Version: 0.5.4
5+ * Version: 0.5.5
66 * Author: Morris Jobke (github.com/MorrisJobke) - original
77 * Eve Ragins @ Eve Corp (github.com/eve-corp)
88 *
5252 drawTitles : false ,
5353 drawMessage : false ,
5454 drawBars : true ,
55- $addAfter : null
55+ $addAfter : null ,
56+ nonce : null
5657 } ;
5758
5859 return this . each ( function ( ) {
209210
210211 var script = document . createElement ( "script" ) ;
211212 script . src = options . zxcvbn ;
213+ if ( options . nonce !== null ) {
214+ script . nonce = options . nonce ;
215+ }
212216 document . head . appendChild ( script ) ;
213217
214218 $elem . bind ( 'keyup input change' , drawSelf ) ;
Original file line number Diff line number Diff line change 11/**
22 * Strengthify - show the weakness of a password (uses zxcvbn for this)
33 * https://github.com/MorrisJobke/strengthify
4- * Version: 0.5.4
4+ * Version: 0.5.5
55 * License: The MIT License (MIT)
66 * Copyright (c) 2013-2016 Morris Jobke <morris.jobke@gmail.com>
77 */
You can’t perform that action at this time.
0 commit comments