Browse Source

CategoryBase: bugfix, open parent category

master
parent
commit
dd7a61d101
  1. 4
      src/CategoryBase.js

4
src/CategoryBase.js

@ -87,8 +87,8 @@ CategoryBase.prototype.open = function () {
if (this.isOpen)
return
if (this.parent) {
this.parent.open()
if (this.parentCategory) {
this.parentCategory.open()
}
if (typeof this.parentDom === 'string') {

Loading…
Cancel
Save