in codelab-initial-state/public/js/view.js [178:190]
constructor(title) {
this.titleEl = el("h4.mdl-dialog__title", title);
this.contentEl = el("div.mdl-dialog__content");
this.actionsEl = el("div.mdl-dialog__actions", [
el("button.mdl-button", { type: "button", onclick: this.hide }, "Close")
]);
this.el = el("dialog#modal.mdl-dialog", [
this.titleEl,
this.contentEl,
this.actionsEl
]);
}