gravtastic 3.2.5 → 3.2.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gravtastic/version.rb +1 -1
- data/vendor/assets/javascripts/md5.js +2 -2
- metadata +1 -1
data/lib/gravtastic/version.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
(function(
|
1
|
+
(function(out) {
|
2
2
|
/*
|
3
3
|
* A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
|
4
4
|
* Digest Algorithm, as defined in RFC 1321.
|
@@ -379,5 +379,5 @@
|
|
379
379
|
return (num << cnt) | (num >>> (32 - cnt));
|
380
380
|
}
|
381
381
|
|
382
|
-
|
382
|
+
out.MD5 = hex_md5;
|
383
383
|
})(window);
|