summaryrefslogtreecommitdiff
path: root/lib/CheckBoxTree.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-11 00:10:32 +0400
committerAndrew Dolgov <[email protected]>2011-12-11 00:10:32 +0400
commitf37e541a8f6ae5dc0955e0bf4e90e86dd7537e1d (patch)
tree2cf3de358ed45eac8c298dd9b5e12f50d07a6404 /lib/CheckBoxTree.js
parent2ea34cc1501409f9f62d83f43de3ee494b2d73db (diff)
parentb167df5e60143efbd4cc9121b7c4825f4f6608d1 (diff)
Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSS
Diffstat (limited to 'lib/CheckBoxTree.js')
-rw-r--r--lib/CheckBoxTree.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CheckBoxTree.js b/lib/CheckBoxTree.js
index 3e4081909..48cfbae9a 100644
--- a/lib/CheckBoxTree.js
+++ b/lib/CheckBoxTree.js
@@ -131,7 +131,7 @@ dojo.declare( "lib.CheckBoxStoreModel", dijit.tree.TreeStoreModel,
currState = this.checkboxState;
}
- return currState // the current state of the checkbox (true/false or undefined)
+ return currState; // the current state of the checkbox (true/false or undefined)
},
_setCheckboxState: function(/*dojo.data.Item*/ storeItem, /*Boolean*/ newState ) {
@@ -277,7 +277,7 @@ dojo.declare( "lib.CheckBoxStoreModel", dijit.tree.TreeStoreModel,
parents.push(this.root);
}
}
- return parents // parent(s) of a dojo.data.item (Array of dojo.data.items)
+ return parents; // parent(s) of a dojo.data.item (Array of dojo.data.items)
},
validateData: function(/*dojo.data.Item*/ storeItem, /*thisObject*/ scope ) {