ace: Delete unnecessary IIFE

This commit is contained in:
Richard Hansen 2021-02-26 01:37:33 -05:00
parent 0e7f4aff52
commit 1ce7d1117b

View file

@ -162,7 +162,6 @@ const Ace2Editor = function () {
doneFunc(); doneFunc();
}; };
(() => {
const doctype = '<!doctype html>'; const doctype = '<!doctype html>';
const iframeHTML = []; const iframeHTML = [];
@ -296,7 +295,6 @@ const Ace2Editor = function () {
editorDocument.open(); editorDocument.open();
editorDocument.write(outerHTML.join('')); editorDocument.write(outerHTML.join(''));
editorDocument.close(); editorDocument.close();
})();
}; };
}; };