thin_man 0.8.5 → 0.8.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 +3 -3
- 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: 4a2e0f7761af8c7e060acbd8c13812f3532cf2a0
|
|
4
|
+
data.tar.gz: 2a01a5ac5bd52c32112568f3fe75efff881ed3e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 700db7a3a954d489c5be80e33082466e64b53aa9754883c0203e2c40f49d58134eeab57b9db1a7945f0e81020f8aa69f34b97e70b3b53597fa0e0395c8aaf38b
|
|
7
|
+
data.tar.gz: 0c54eb084c020a070b5b3f684e728f62b1f51156764295189e5854ea8c4555a94bae6c6864a233d7895ac19c6ac84033cf11238c3667bbbd0541fc61f905a688
|
|
@@ -204,10 +204,10 @@ var initThinMan = function(){
|
|
|
204
204
|
}),
|
|
205
205
|
AjaxProgress: Class.extend({
|
|
206
206
|
init: function(target,alt,progress_color){
|
|
207
|
-
if(target.length
|
|
208
|
-
var progress_target = alt;
|
|
209
|
-
} else if(typeof(alt) != 'undefined' && alt.length > 0) {
|
|
207
|
+
if(target.length > 0){
|
|
210
208
|
var progress_target = target;
|
|
209
|
+
} else if(typeof(alt) != 'undefined') {
|
|
210
|
+
var progress_target = alt;
|
|
211
211
|
} else {
|
|
212
212
|
var progress_target = $('body');
|
|
213
213
|
}
|
data/lib/thin_man/version.rb
CHANGED