1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Fixed md editor refactoring issues after manual test

Testing was a full manual feature test of each piece of supported logic
defined in the code.
This commit is contained in:
Dan Brown
2022-11-26 21:33:39 +00:00
parent 63d6272282
commit 8e4bb32b77
3 changed files with 8 additions and 8 deletions

View File

@ -78,7 +78,7 @@ export class Actions {
const data = {
image: pngData,
uploaded_to: Number(this.pageId),
uploaded_to: Number(this.editor.config.pageId),
};
window.$http.post("/images/drawio", data).then(resp => {
@ -368,7 +368,7 @@ export class Actions {
const scroll = this.editor.cm.getScrollInfo();
const atEnd = scroll.top + scroll.clientHeight === scroll.height;
if (atEnd) {
editor.display.scrollToIndex(-1);
this.editor.display.scrollToIndex(-1);
return;
}
@ -377,7 +377,7 @@ export class Actions {
const parser = new DOMParser();
const doc = parser.parseFromString(this.editor.markdown.render(range), 'text/html');
const totalLines = doc.documentElement.querySelectorAll('body > *');
editor.display.scrollToIndex(totalLines.length);
this.editor.display.scrollToIndex(totalLines.length);
}
/**
@ -404,7 +404,7 @@ export class Actions {
const cursorPos = this.editor.cm.coordsChar({left: event.pageX, top: event.pageY});
this.editor.cm.setCursor(cursorPos);
for (const image of images) {
editor.actions.uploadImage(image);
this.editor.actions.uploadImage(image);
}
}
}