Allows Editor to work off line. Allows images to be resized.

This commit is contained in:
Michael Washington
2019-12-17 05:46:05 -08:00
parent 38b89e3595
commit d6704d1c6d
14 changed files with 3877 additions and 12 deletions

View File

@ -66,5 +66,15 @@ namespace Oqtane.Modules.Controls
return jsRuntime.InvokeAsync<object>(
"interop.enableQuillEditor", quillElement, mode);
}
internal static ValueTask<object> InsertImage(
IJSRuntime jsRuntime,
ElementReference quillElement,
string ImageURL)
{
return jsRuntime.InvokeAsync<object>(
"interop.insertQuillImage",
quillElement, ImageURL);
}
}
}