use removeOnClose

This commit is contained in:
Luke Pulverenti 2015-12-08 15:01:29 -05:00
parent d22c5b9c01
commit 9a99eaa803

View File

@ -232,7 +232,8 @@
var dlg = paperDialogHelper.createDialog({
size: 'small',
theme: 'a'
theme: 'a',
removeOnClose: true
});
var html = '';
@ -262,11 +263,6 @@
dlg.innerHTML = html;
document.body.appendChild(dlg);
// Has to be assigned a z-index after the call to .open()
dlg.addEventListener('iron-overlay-closed', function (e) {
dlg.parentNode.removeChild(dlg);
});
paperDialogHelper.open(dlg);
$('form', dlg).on('submit', function () {