This commit is contained in:
Sam Thorogood 2016-11-14 17:06:53 +00:00
Родитель 6f6f6d2a63
Коммит 518b6dbdcd
1 изменённых файлов: 0 добавлений и 8 удалений

Просмотреть файл

@ -220,11 +220,9 @@
// Optionally center vertically, relative to the current viewport.
if (dialogPolyfill.needsCentering(this.dialog_)) {
console.info('repositioning what');
dialogPolyfill.reposition(this.dialog_);
this.replacedStyleTop_ = true;
} else {
console.info('NOT repositioning');
this.replacedStyleTop_ = false;
}
@ -232,10 +230,6 @@
this.backdrop_.addEventListener('click', this.backdropClick_);
this.dialog_.parentNode.insertBefore(this.backdrop_,
this.dialog_.nextSibling);
this.dialog_.addEventListener('DOMNodeRemoved', function(ev) {
console.info('dialog itself removed', ev);
});
},
/**
@ -444,8 +438,6 @@
var dialog = /** @type {HTMLDialogElement} */ (event.target);
if (!dialog.open) { return; }
console.info('dialog is removed', event);
// Find a dialogPolyfillInfo which matches the removed <dialog>.
this.pendingDialogStack.some(function(dpi) {
if (dpi.dialog == dialog) {