Skip to content

Commit

Permalink
Updates to release v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Sep 4, 2017
1 parent 23481ff commit be58198
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015, Kartik Visweswaran
Copyright (c) 2015 - 2017, Kartik Visweswaran
Krajee.com
All rights reserved.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A dynamic strength meter for password input validation with various configurable
1. Convert any password input to an advanced password strength validation plugin. Will fallback to a normal password input for browsers not supporting JQuery or Javascript.
2. The plugin will offer ability to toggle password mask (show/hide password text) and display a dynamic strength meter as you type. Uses advanced strength calculation algorithm which can be customized by setting/overriding the default validation `rules`.
3. The plugin automatically converts an input with `type = password` to the strength validation plugin if you set its `class = strength`. All options to the password input can be passed as HTML5 `data` attributes.
4. Configurable templates to control the style and display of the entire plugin. The password input and the various components of the strength meter can be customized. The default template uses Bootstrap 3.x markup to display the password input, toggle, and strength meter.
4. Configurable templates to control the style and display of the entire plugin. The password input and the various components of the strength meter can be customized. The default template uses styling compatible with Bootstrap 3.x & Bootstrap 4.x markup to display the password input, toggle, and strength meter.
5. Internationalization enabled to show messages in languages other than Englsh. At this stage translations are available for 4 languages (German, French, Italian, and Russian). The titles for verdicts and toggle mask can be configured.
6. Show and hide meter and/or toggle password mask
7. Reset plugin to the initial value when the form is reset.
Expand All @@ -29,7 +29,7 @@ View the [plugin documentation](http://plugins.krajee.com/strength-meter) and [p

1. Latest [JQuery](http://jquery.com/)
2. Most modern browsers supporting CSS3 & JQuery. For Internet Explorer, one must use IE versions 9 and above.
3. [Bootstrap 3.x](http://getbootstrap.com/) is optional. The plugin templates use the Bootstrap 3.x markup by default. So for the default markup to render correct, you would need Bootstrap 3.x CSS to view the styles properly. If you do not wish to use Bootstrap, you can easily override the templates with your markup and styles.
3. [Bootstrap 4.x](http://getbootstrap.com/) (or bootstrap 3.x) is supported by default for styling. But usage of this framework is optional. The plugin templates use the Bootstrap 3.x markup by default. So for the default markup to render correct, you would need Bootstrap 3.x CSS to view the styles properly. If you do not wish to use Bootstrap, you can easily override the templates with your markup and styles.

## Installation

Expand Down
4 changes: 1 addition & 3 deletions css/strength-meter.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
}

.kv-scorebar {
background-image: url(../img/bg_strength_gradient.jpg);
background-repeat: no-repeat;
background-position: 0 0;
background: url(../img/bg_strength_gradient.jpg) no-repeat 0 0;
position: absolute;
width: 98px;
height: 14px;
Expand Down
2 changes: 1 addition & 1 deletion css/strength-meter.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
*
* Licensed under the BSD 3-Clause
* https://github.com/kartik-v/strength-meter/blob/master/LICENSE.md
*/.kv-strength-container{width:100%;margin:0;padding:0;border:0}.kv-strength-container td{vertical-align:middle}.kv-meter-container{width:130px}.kv-meter{text-align:center}.kv-disabled{opacity:.65;cursor:not-allowed}.kv-scorebar-border{background:#333;border:1px solid #333;height:16px;width:100px;margin:0 auto;border-radius:4px}.kv-score,.kv-scorebar{position:absolute;width:98px;border-radius:2px}.kv-scorebar{background-image:url(../img/bg_strength_gradient.jpg);background-repeat:no-repeat;background-position:0 0;height:14px;z-index:0}.kv-score{font-size:12px;line-height:13px;z-index:10}.kv-score-0,.kv-score-1,.kv-score-5{color:#fff}.kv-score-2,.kv-score-3,.kv-score-4{color:#333}.kv-verdict{width:100%}.kv-verdict .label{display:inline-block;padding:.25em .4em;font-size:12px;line-height:1;text-align:center;vertical-align:baseline;border-radius:.25rem}
*/.kv-strength-container{width:100%;margin:0;padding:0;border:0}.kv-strength-container td{vertical-align:middle}.kv-meter-container{width:130px}.kv-meter{text-align:center}.kv-disabled{opacity:.65;cursor:not-allowed}.kv-scorebar-border{background:#333;border:1px solid #333;height:16px;width:100px;margin:0 auto;border-radius:4px}.kv-score,.kv-scorebar{position:absolute;width:98px;border-radius:2px}.kv-scorebar{background:url(../img/bg_strength_gradient.jpg) no-repeat;height:14px;z-index:0}.kv-score{font-size:12px;line-height:13px;z-index:10}.kv-score-0,.kv-score-1,.kv-score-5{color:#fff}.kv-score-2,.kv-score-3,.kv-score-4{color:#333}.kv-verdict{width:100%}.kv-verdict .label{display:inline-block;padding:.25em .4em;font-size:12px;line-height:1;text-align:center;vertical-align:baseline;border-radius:.25rem}

0 comments on commit be58198

Please sign in to comment.