From c9b1f17f250b8e34a88eab79d7c8c46a85502cb8 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 25 Feb 2021 22:32:17 -0500 Subject: [PATCH] ace: Format script strings for readability --- src/static/js/ace.js | 88 ++++++++++++++++++++++---------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/src/static/js/ace.js b/src/static/js/ace.js index dd3fb832f..c5d517ba8 100644 --- a/src/static/js/ace.js +++ b/src/static/js/ace.js @@ -197,23 +197,22 @@ const Ace2Editor = function () { iframeHTML.push(``); iframeHTML.push(``); - iframeHTML.push(scriptTag( - `\n\ -require.setRootURI("../javascripts/src");\n\ -require.setLibraryURI("../javascripts/lib");\n\ -require.setGlobalKeyPath("require");\n\ -\n\ -// intentially moved before requiring client_plugins to save a 307 -var Ace2Inner = require("ep_etherpad-lite/static/js/ace2_inner");\n\ -var plugins = require("ep_etherpad-lite/static/js/pluginfw/client_plugins");\n\ -plugins.adoptPluginsFromAncestorsOf(window);\n\ -\n\ -$ = jQuery = require("ep_etherpad-lite/static/js/rjquery").jQuery; // Expose jQuery #HACK\n\ -\n\ -plugins.ensure(function () {\n\ - Ace2Inner.init();\n\ -});\n\ -`)); + iframeHTML.push(scriptTag(` + require.setRootURI("../javascripts/src"); + require.setLibraryURI("../javascripts/lib"); + require.setGlobalKeyPath("require"); + + // intentially moved before requiring client_plugins to save a 307 + var Ace2Inner = require("ep_etherpad-lite/static/js/ace2_inner"); + var plugins = require("ep_etherpad-lite/static/js/pluginfw/client_plugins"); + plugins.adoptPluginsFromAncestorsOf(window); + + $ = jQuery = require("ep_etherpad-lite/static/js/rjquery").jQuery; // Expose jQuery #HACK + + plugins.ensure(function () { + Ace2Inner.init(); + }); + `)); iframeHTML.push(''); @@ -228,33 +227,34 @@ plugins.ensure(function () {\n\ const gt = typeof globalThis === 'object' ? globalThis : window; gt.ChildAccessibleAce2Editor = Ace2Editor; - const outerScript = `\ -editorId = ${JSON.stringify(info.id)};\n\ -editorInfo = parent.ChildAccessibleAce2Editor.registry[editorId];\n\ -window.onload = function () {\n\ - window.onload = null;\n\ - setTimeout(function () {\n\ - var iframe = document.createElement("IFRAME");\n\ - iframe.name = "ace_inner";\n\ - iframe.title = "pad";\n\ - iframe.scrolling = "no";\n\ - var outerdocbody = document.getElementById("outerdocbody");\n\ - iframe.frameBorder = 0;\n\ - iframe.allowTransparency = true; // for IE\n\ - outerdocbody.insertBefore(iframe, outerdocbody.firstChild);\n\ - iframe.ace_outerWin = window;\n\ - readyFunc = function () {\n\ - editorInfo.onEditorReady();\n\ - readyFunc = null;\n\ - editorInfo = null;\n\ - };\n\ - var doc = iframe.contentWindow.document;\n\ - doc.open();\n\ - var text = (${JSON.stringify(iframeHTML.join('\n'))});\n\ - doc.write(text);\n\ - doc.close();\n\ - }, 0);\n\ -}`; + const outerScript = ` + editorId = ${JSON.stringify(info.id)}; + editorInfo = parent.ChildAccessibleAce2Editor.registry[editorId]; + window.onload = function () { + window.onload = null; + setTimeout(function () { + var iframe = document.createElement("IFRAME"); + iframe.name = "ace_inner"; + iframe.title = "pad"; + iframe.scrolling = "no"; + var outerdocbody = document.getElementById("outerdocbody"); + iframe.frameBorder = 0; + iframe.allowTransparency = true; // for IE + outerdocbody.insertBefore(iframe, outerdocbody.firstChild); + iframe.ace_outerWin = window; + readyFunc = function () { + editorInfo.onEditorReady(); + readyFunc = null; + editorInfo = null; + }; + var doc = iframe.contentWindow.document; + doc.open(); + var text = (${JSON.stringify(iframeHTML.join('\n'))}); + doc.write(text); + doc.close(); + }, 0); + } + `; const outerHTML = [doctype, ``];