mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-12 12:06:38 -05:00
Fix codemirror rendering issue where the cursor appears below the last line
This commit is contained in:
parent
2ee195c079
commit
bb3b6fcbe1
1 changed files with 2 additions and 1 deletions
3
resources/assets/js/dashboard.js
vendored
3
resources/assets/js/dashboard.js
vendored
|
@ -564,7 +564,8 @@ function editItemInit() {
|
||||||
|
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
simplemde[column].value($this.attr("value"));
|
simplemde[column].value($this.attr("value"));
|
||||||
}, 100);
|
simplemde[column].refresh();
|
||||||
|
}, 500);
|
||||||
});
|
});
|
||||||
|
|
||||||
// initialize change events for back button
|
// initialize change events for back button
|
||||||
|
|
Loading…
Reference in a new issue