mirror of https://github.com/artf/grapesjs.git
3 changed files with 35 additions and 8 deletions
@ -0,0 +1,26 @@ |
|||
import Component from './ComponentSvg'; |
|||
|
|||
/** |
|||
* Component for inner SVG elements |
|||
*/ |
|||
export default Component.extend( |
|||
{ |
|||
defaults: { |
|||
...Component.prototype.defaults, |
|||
selectable: false, |
|||
hoverable: false, |
|||
layerable: false |
|||
} |
|||
}, |
|||
{ |
|||
isComponent(el) { |
|||
if (Component.isComponent(el) && el.tagName.toLowerCase() !== 'svg') { |
|||
console.log('SVG in', el); |
|||
return { |
|||
tagName: el.tagName, |
|||
type: 'svg-in' |
|||
}; |
|||
} |
|||
} |
|||
} |
|||
); |
|||
Loading…
Reference in new issue