ha-frontend-cdce8p/src/state/notification-mixin.ts
Paulus Schoutsen e02d11a51f
Pimp script editor (#3192)
* Pimp script editor

* Use property for define

* Show toasts
2019-05-12 21:28:25 -07:00

13 lines
410 B
TypeScript

export default (superClass) =>
class extends superClass {
protected firstUpdated(changedProps) {
super.firstUpdated(changedProps);
this.registerDialog({
dialogShowEvent: "hass-notification",
dialogTag: "notification-manager",
dialogImport: () =>
import(/* webpackChunkName: "notification-manager" */ "../managers/notification-manager"),
});
}
};