Web: Editor: Added displaying tooltip with the message instead of info toastr.

This commit is contained in:
Tatiana Lopaeva 2021-08-16 11:21:14 +03:00
parent 6e9ceea8c0
commit 92f0126e5d

View File

@ -479,8 +479,8 @@ const Editor = () => {
if (index > -1) {
const splitUrl = url.split("#message/");
const message = decodeURIComponent(splitUrl[1]).replaceAll("+", " ");
message && toastr.info(message);
history.pushState({}, null, url.substring(0, index));
docEditor.showMessage(message);
}
};