1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 00:55:55 +00:00

fix preference tree elements not being properly clickable in Firefox

This commit is contained in:
Andrew Dolgov
2010-11-21 23:05:51 +03:00
parent bcf5ed46e3
commit 8a097fa381
6 changed files with 20 additions and 19 deletions

View File

@@ -48,13 +48,5 @@ dojo.declare("fox.PrefFilterTree", lib.CheckBoxTree, {
return (!item.error || item.error == '') ? "dijitTreeRow" :
"dijitTreeRow Error";
},
onClick: function (item) {
var id = String(item.id);
var bare_id = id.substr(id.indexOf(':')+1);
if (id.match('FILTER:')) {
editFilter(bare_id, event);
}
},
});