Item.isRegularItem() = !(Item.isNote() || Item.isFile())
This commit is contained in:
parent
0a9d6d5684
commit
c093e7b62b
1 changed files with 5 additions and 0 deletions
|
@ -776,6 +776,11 @@ Scholar.Item.prototype.updateDateModified = function(){
|
|||
}
|
||||
|
||||
|
||||
Scholar.Item.prototype.isRegularItem = function(){
|
||||
return !(this.isNote() || this.isFile());
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
//
|
||||
// Methods dealing with note items
|
||||
|
|
Loading…
Reference in a new issue