Fix iOS issue : unability to edit large posts

This commit is contained in:
Pierre 2018-05-07 18:15:49 +02:00
parent e54998128f
commit 2dae59e749

View File

@ -99,6 +99,12 @@ ComunicWeb.components.posts.edit = {
class: "editor-container"
});
//iOS fix : use slimscroll if required
updateDiv.style.maxHeight = (window.innerHeight - 200) + "px";
$(updateDiv).slimscroll({
height: "100%"
});
//Create update editor
var editorDiv = createElem2({
appendTo: updateDiv,