pageboard / client

Web site building system - client packages
MIT License
4 stars 0 forks source link

element install should not be overriden, add element.plugins instead #49

Open kapouer opened 5 years ago

kapouer commented 5 years ago

install is a only accessible by the element itself and is not easy to extend. Instead, use

Pageboard.elements.layout.plugins.custom = function(scope) {
  this.dom.classList.add('[color]');
};