Comment clarification

This commit is contained in:
Jeremy Ruston
2013-04-30 22:35:52 +01:00
parent fbf040f85e
commit e12fbf0f9f
+3
View File
@@ -172,6 +172,9 @@ exports.isTemporaryTiddler = function(title) {
return title.indexOf("$:/temp/") === 0;
};
/*
Determines if a tiddler is a shadow tiddler, regardless of whether it has been overridden by a real tiddler
*/
exports.isShadowTiddler = function(title) {
return $tw.utils.hop(this.shadowTiddlers,title);
};