Topic: Can I call plugin method without using editor?
On page I have image. When I click I call tinymce plugin
$(document).on("click", "#newsThumbnail", function () {
tinymce.activeEditor.plugins.imgmanager.showWindow({
OnClosed: function (path) {
$("#PostImage").val(path);
$("#newsThumbnail").attr("src", path);
}
});
});
Can I call method from PluginManager or some else?