Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/strengthify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2013-08-16 13:24:25 +0400
committerMorris Jobke <morris.jobke@gmail.com>2013-08-16 13:24:25 +0400
commit83df74956d74229be8cf23a30d5daf344dd57181 (patch)
treefba515aec762f6b094c1766b9281db45fc7efc55
parentd6af00dcbce06ee969d9ed3ec67056c04629234d (diff)
Solve some autoguessing mime type issue in Firefox and Chrome0.2
-rw-r--r--jquery.strengthify.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/jquery.strengthify.js b/jquery.strengthify.js
index 45ad40d..9616249 100644
--- a/jquery.strengthify.js
+++ b/jquery.strengthify.js
@@ -2,7 +2,7 @@
* Strengthify - show the weakness of a password (uses zxcvbn for this)
* https://github.com/kabum/strengthify
*
- * Version: 0.1
+ * Version: 0.2
* Author: Morris Jobke (github.com/kabum)
*
* License:
@@ -56,6 +56,7 @@
$.ajax({
cache: true,
+ dataType: 'script',
url: options.zxcvbn
}).done(function() {
me.keyup(function() {
@@ -107,4 +108,4 @@
return me
};
-}(jQuery)) \ No newline at end of file
+}(jQuery))