1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 23:25:56 +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

@@ -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 ) {