@ones-editor/editor 1.1.30-beta.3 → 1.1.30-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -41625,6 +41625,9 @@ ${codeText}
|
|
|
41625
41625
|
let scrollbarContainer = tools.querySelector(`.${SCROLL_BAR_CLASS.SCROLL_BAR}`);
|
|
41626
41626
|
if (!scrollbarContainer) {
|
|
41627
41627
|
scrollbarContainer = createElement("div", [SCROLL_BAR_CLASS.SCROLL_BAR], tools);
|
|
41628
|
+
if (clientType.isWindows && clientType.isFirefox) {
|
|
41629
|
+
scrollbarContainer.style.minHeight = "10px";
|
|
41630
|
+
}
|
|
41628
41631
|
}
|
|
41629
41632
|
assert(logger$21, scrollbarContainer instanceof HTMLDivElement, "invalid child for container tools");
|
|
41630
41633
|
if (!scrollbarContainer.firstElementChild) {
|
|
@@ -77413,7 +77416,7 @@ ${data.flowchartText}
|
|
|
77413
77416
|
}
|
|
77414
77417
|
}
|
|
77415
77418
|
});
|
|
77416
|
-
editor.version = "1.1.30-beta.
|
|
77419
|
+
editor.version = "1.1.30-beta.4";
|
|
77417
77420
|
if (Logger$2.level === LogLevel.DEBUG) {
|
|
77418
77421
|
window.setReauthFail = (fail) => {
|
|
77419
77422
|
window.isReauthError = fail;
|
|
@@ -77505,7 +77508,7 @@ ${data.flowchartText}
|
|
|
77505
77508
|
});
|
|
77506
77509
|
editor.addCustom(DOC_RE_AUTH_KEYS, (editor2) => new DocReAuthCallbacks(editor2));
|
|
77507
77510
|
OnesEditorToolbar.register(editor);
|
|
77508
|
-
editor.version = "1.1.30-beta.
|
|
77511
|
+
editor.version = "1.1.30-beta.4";
|
|
77509
77512
|
return editor;
|
|
77510
77513
|
}
|
|
77511
77514
|
async function showDocVersions(editor, options, serverUrl) {
|