Fix for "Missing space after the if"

This commit is contained in:
Balázs Suhajda 2013-09-26 13:53:46 +02:00
Родитель 35956f1800
Коммит 57cc2165c9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -97,7 +97,7 @@ dialogPolyfill.close = function(retval) {
// Triggering "close" event for any attached listeners on the <dialog>
var event;
if(document.createEvent) {
if (document.createEvent) {
event = document.createEvent('HTMLEvents');
event.initEvent('close',true,true);
} else {