There was an error while loading. Please reload this page.
1 parent c3a5581 commit 9f14d91Copy full SHA for 9f14d91
1 file changed
filter.js
@@ -101,7 +101,7 @@
101
this.dataModel.forEach(function(dm) {
102
dm = dm[base.settings.root];
103
var el = $(base.view(dm));
104
- el.attr({'id': base.settings.root + '_' + dm.id, 'tagjs': true});
+ el.attr({'id': base.settings.root + '_' + dm.id, 'data-fjs': true});
105
node.append(el);
106
});
107
},
@@ -268,7 +268,7 @@
268
269
hideShow: function(id_arr) {
270
var id_str = "#" + this.settings.root + '_';
271
- $(this.parentNode + " > *[tagjs]").hide();
+ $(this.parentNode + " > *[data-fjs]").hide();
272
273
id_arr.forEach(function(id) {
274
$(id_str + id).show();
0 commit comments