thin_man 0.9.5 → 0.9.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/thin_man.js +10 -6
- data/lib/thin_man/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af482c9cca50781f9d457d002516caf1331f404e
|
4
|
+
data.tar.gz: 54bb7bae6415461acad2c7a029a2dd31cf1d0d88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1972502569d7697bc6201aef74d55fcb8d5971869bc04e9e7f089e86bdc7033cff3cdb694b3f5e9d7ee871406dc41e6bedafef8c3455f054669b13c52335c3b7
|
7
|
+
data.tar.gz: 8a611f1aa92936ba36c884f8e14600daffa9b4c4e1c1f306402f5371053a0cf34522a7093e892f1d58ff09ff2ee5c4cac575e81dfc80f079e6f3610f4f291cef
|
@@ -215,7 +215,7 @@ var initThinMan = function(){
|
|
215
215
|
progress_color = 'black';
|
216
216
|
}
|
217
217
|
this.progress_container = $('#ajax_progress_container').clone();
|
218
|
-
uuid = new UUID;
|
218
|
+
uuid = new this.UUID;
|
219
219
|
this.progress_container.prop('id', uuid.value);
|
220
220
|
progress_target.append(this.progress_container);
|
221
221
|
this.progress_container.css({
|
@@ -305,6 +305,14 @@ var initThinMan = function(){
|
|
305
305
|
});
|
306
306
|
$sort_container.disableSelection();
|
307
307
|
}
|
308
|
+
}),
|
309
|
+
UUID: Class.extend({
|
310
|
+
init: function(){
|
311
|
+
this.value = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
312
|
+
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
|
313
|
+
return v.toString(16);
|
314
|
+
});
|
315
|
+
}
|
308
316
|
})
|
309
317
|
};
|
310
318
|
thin_man.AjaxFormSubmission = thin_man.AjaxSubmission.extend({
|
@@ -480,12 +488,8 @@ var initThinMan = function(){
|
|
480
488
|
|
481
489
|
});
|
482
490
|
|
483
|
-
UUID = Class.extend({
|
491
|
+
var UUID = Class.extend({
|
484
492
|
init: function(){
|
485
|
-
this.value = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
486
|
-
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
|
487
|
-
return v.toString(16);
|
488
|
-
});
|
489
493
|
}
|
490
494
|
});
|
491
495
|
|
data/lib/thin_man/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thin_man
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Draut, Adam Bialek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|