mirror of https://github.com/artf/grapesjs.git
2 changed files with 10 additions and 10 deletions
@ -1,10 +0,0 @@ |
|||
import Backbone from 'backbone'; |
|||
|
|||
export default class ToolbarButton extends Backbone.Model { |
|||
defaults() { |
|||
return { |
|||
command: '', |
|||
attributes: {}, |
|||
}; |
|||
} |
|||
} |
|||
@ -0,0 +1,10 @@ |
|||
import { Model } from '../../common'; |
|||
|
|||
export default class ToolbarButton extends Model { |
|||
defaults() { |
|||
return { |
|||
command: '', |
|||
attributes: {}, |
|||
}; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue