ace: Delete unnecessary IIFE

This commit is contained in:
Richard Hansen 2021-02-26 01:37:33 -05:00 committed by John McLear
parent 3a311d2182
commit d84447290e

View file

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