1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 23:35:57 +00:00

misc typo fixes

This commit is contained in:
Andrew Dolgov
2011-12-10 21:26:59 +04:00
parent e6f1a1b747
commit e331188f76
15 changed files with 49 additions and 67 deletions

View File

@@ -52,7 +52,7 @@ dojo.declare("fox.PrefFeedTree", lib.CheckBoxTree, {
var item = dijit.getEnclosingWidget(target).item;
// disable copying items
source.copyState = function() { return false; }
source.copyState = function() { return false; };
var source_item = false;
@@ -62,9 +62,6 @@ dojo.declare("fox.PrefFeedTree", lib.CheckBoxTree, {
if (!source_item || !item) return false;
var id = String(item.id);
var source_id = String(source_item.id);
var id = this.tree.model.store.getValue(item, 'id');
var source_id = source.tree.model.store.getValue(source_item, 'id');