mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-07 01:54:27 -06:00
update changelog
This commit is contained in:
parent
4f581b0c31
commit
5f56c27ba7
@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Fix status bar update when dragging but not dropping
|
- Fix status bar update when dragging but not dropping
|
||||||
- Fix progressbar
|
- Fix progressbar
|
||||||
- Add option for CSRF token to include in AJAX call for imageupload
|
- Add option for CSRF token to include in AJAX call for imageupload
|
||||||
|
- Fix status bar reset after upload error
|
||||||
|
- Add server side error messages on image upload.
|
||||||
|
|
||||||
## [2.7.0] - 2019-07-13
|
## [2.7.0] - 2019-07-13
|
||||||
### Added
|
### Added
|
||||||
|
@ -904,7 +904,7 @@ function _replaceSelection(cm, active, startEnd, url) {
|
|||||||
Object.assign(startPoint, cm.getCursor('start'));
|
Object.assign(startPoint, cm.getCursor('start'));
|
||||||
Object.assign(endPoint, cm.getCursor('end'));
|
Object.assign(endPoint, cm.getCursor('end'));
|
||||||
if (url) {
|
if (url) {
|
||||||
start = start.replace('#url#', url);
|
start = start.replace('#url#', url); // url is in start for upload-image
|
||||||
end = end.replace('#url#', url);
|
end = end.replace('#url#', url);
|
||||||
}
|
}
|
||||||
if (active) {
|
if (active) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user