Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$.FroalaEditor.DefineIcon("insertManager", {
NAME: "picture-o"
}), $.FroalaEditor.RegisterCommand("insertManager", {
title: "Insert Image",
focus: !1,
undo: !1,
refreshAfterCallback: !1,
callback: function () {
$("#modal-manager").remove();
$.ajax({
url: "index.php?route=common/filemanager&token=" + getURLVar("token"),
dataType: "html",
success: function (data) {
$('body').append('<div id="modal-manager" class="modal fade">' + data + '</div>');
$('#modal-manager').modal('show');
$('#file-container').delegate('a.thumbnail', 'click', function (e) {
$(element).froalaEditor('insertImage', $(this).attr('href'));
$('#modal-manager').modal('hide');
});
}
})
}
});
callback: function () {
// Call any editor method here.
this.html.insert('Hello Froala!');
},
Нужно установить соответствующий модуль загрузки изображений и указать свои данные. Для просмотра ссылки ВойдиЕсли бы я это знал как сделать, я бы наверное в форум не обращался