svn_wc_tree 0.0.7 → 0.0.8
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/README.rdoc +1 -1
- data/svn_wc_tree/js/swt.js +4 -4
- metadata +4 -4
data/README.rdoc
CHANGED
data/svn_wc_tree/js/swt.js
CHANGED
@@ -187,8 +187,8 @@ $(document).ready(function(){
|
|
187
187
|
var dir = $("#swt_dir").val();
|
188
188
|
//console.log(re_filter);
|
189
189
|
// set current filter to a cookie
|
190
|
-
$.cookie('swt_filter_re', re_filter);
|
191
|
-
$.cookie('swt_dir', dir);
|
190
|
+
if (re_filter) $.cookie('swt_filter_re', re_filter);
|
191
|
+
if (dir) $.cookie('swt_dir', dir);
|
192
192
|
window.location.reload();
|
193
193
|
//history.go();
|
194
194
|
},
|
@@ -306,10 +306,10 @@ $(document).ready(function(){
|
|
306
306
|
return entries_list;
|
307
307
|
}
|
308
308
|
|
309
|
-
function keep_filter(name,
|
309
|
+
function keep_filter(name, f_val){
|
310
310
|
//console.log(re_filter);
|
311
311
|
//$("#swt_filter_re").val(re_filter);
|
312
|
-
$('#'+name).val(
|
312
|
+
if (f_val) $('#'+name).val(f_val);
|
313
313
|
}
|
314
314
|
|
315
315
|
// limit result set with filter
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: svn_wc_tree
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 8
|
10
|
+
version: 0.0.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- David Wright
|
@@ -87,7 +87,7 @@ files:
|
|
87
87
|
- svn_wc_tree/js/source/themes/themeroller/style.css
|
88
88
|
- svn_wc_tree/js/source/themes/themeroller/throbber.gif
|
89
89
|
has_rdoc: true
|
90
|
-
homepage:
|
90
|
+
homepage: https://github.com/dvwright/svn_wc_tree
|
91
91
|
licenses: []
|
92
92
|
|
93
93
|
post_install_message:
|