gravtastic 3.2.5 → 3.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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);
|