thin_man 0.9.2 → 0.9.3
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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/thin_man.js +9 -8
- data/lib/thin_man/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e241b753a4b04d9f93ad8c88bca327328d0573cc
|
4
|
+
data.tar.gz: bf47a8b6e9a868a1fcfcfa9ea738fc19a17e6d3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5188f39b859f91cb826bb4258c80249cb524c12f3c48f19a6de6cfa75613f7d6d7df63c450ccf5a01df93852c31fb3e421bed488110debfbc9c9b9dd4f8886f
|
7
|
+
data.tar.gz: 7076e3e7b46ba7a6afe59fad348370594cc6df38d1cc17cfe9ba233b7564c8878f7ac70041e02bab683fc965e3ca8d3bfdfa7200dee53bb223159e90049552a1
|
@@ -499,15 +499,16 @@ var initThinMan = function(){
|
|
499
499
|
|
500
500
|
});
|
501
501
|
|
502
|
+
UUID = Class.extend({
|
503
|
+
init: function(){
|
504
|
+
this.value = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
505
|
+
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
|
506
|
+
return v.toString(16);
|
507
|
+
});
|
508
|
+
}
|
509
|
+
});
|
510
|
+
|
502
511
|
};
|
503
|
-
var UUID = Class.extend({
|
504
|
-
init: function(){
|
505
|
-
this.value = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
506
|
-
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
|
507
|
-
return v.toString(16);
|
508
|
-
});
|
509
|
-
}
|
510
|
-
});
|
511
512
|
|
512
513
|
if(typeof Class === "undefined"){
|
513
514
|
$.getScript('https://rawgit.com/edraut/js_inheritance/a6c1e40986ecb276335b0a0b1792abd01f05ff6c/inheritance.js', function(){
|
data/lib/thin_man/version.rb
CHANGED