mirror of https://github.com/artf/grapesjs.git
1 changed files with 11 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||||
|
import DomainViews from 'domain_abstract/view/DomainViews'; |
||||
|
import FrameView from './FrameView'; |
||||
|
|
||||
|
export default DomainViews.extend({ |
||||
|
itemView: FrameView, |
||||
|
|
||||
|
initialize(opts) { |
||||
|
this.config = { editor: opts.editor || '' }; |
||||
|
this.listenTo(this.collection, 'reset', this.render); |
||||
|
} |
||||
|
}); |
||||
Loading…
Reference in new issue