Item.isRegularItem() = !(Item.isNote() || Item.isFile())

This commit is contained in:
Dan Stillman 2006-07-27 15:04:22 +00:00
parent 0a9d6d5684
commit c093e7b62b

View file

@ -776,6 +776,11 @@ Scholar.Item.prototype.updateDateModified = function(){
}
Scholar.Item.prototype.isRegularItem = function(){
return !(this.isNote() || this.isFile());
}
////////////////////////////////////////////////////////
//
// Methods dealing with note items