SEMICOLONS ;.;

This commit is contained in:
James Kiesel 2017-03-25 21:44:28 +13:00
parent a4127a8f71
commit c99883cf65
2 changed files with 2 additions and 2 deletions

View File

@ -347,7 +347,7 @@ class PluginApi {
* and returns a hash of attrs to pass to the widget * and returns a hash of attrs to pass to the widget
**/ **/
addHeaderPanel(name, toggle, attrFn) { addHeaderPanel(name, toggle, attrFn) {
queryRegistry('header').prototype.attachAdditionalPanel(name, toggle, attrFn) queryRegistry('header').prototype.attachAdditionalPanel(name, toggle, attrFn);
} }
/** /**

View File

@ -187,7 +187,7 @@ export default createWidget('header', {
}, },
attachAdditionalPanel(name, toggle, attrFn) { attachAdditionalPanel(name, toggle, attrFn) {
this.additionalPanels.push({ name, toggle, attrFn }) this.additionalPanels.push({ name, toggle, attrFn });
}, },
html(attrs, state) { html(attrs, state) {