david_66
07/20/2023, 4:11 PM.umb-editor--small
class which limited in width: 500px but I want to apply .umb-editor--large
for better edit experience, how can I do that?Jemayn
07/20/2023, 4:31 PMjs
function openMediaPicker() {
vm.buttonState = "busy";
var options = {
title: "Select image",
view: "/App_Plugins/Kontainer/infiniteEditor.html",
size: "large",
submit: function(model) {
model.forEach(function(item){
$scope.model.value.images.push(item);
})
editorService.close();
vm.buttonState = "init";
},
close: function() {
editorService.close();
vm.buttonState = "init";
}
};
editorService.open(options);
}