ui: display editor only when it is ready
so it avoid strange ui effect when div get positionedpull/3969/head
parent
d5020f53ab
commit
15af63b0f8
|
@ -29,6 +29,9 @@ body {
|
||||||
height: auto;
|
height: auto;
|
||||||
flex: 1 auto;
|
flex: 1 auto;
|
||||||
}
|
}
|
||||||
|
#editorcontainerbox #editorcontainer:not(.initialized) {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
#editorcontainerbox #editorcontainer iframe {
|
#editorcontainerbox #editorcontainer iframe {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
|
@ -573,6 +573,8 @@ var pad = {
|
||||||
mobileMatch.addListener(checkChatAndUsersVisibility); // check if window resized
|
mobileMatch.addListener(checkChatAndUsersVisibility); // check if window resized
|
||||||
setTimeout(function() { checkChatAndUsersVisibility(mobileMatch); }, 0); // check now after load
|
setTimeout(function() { checkChatAndUsersVisibility(mobileMatch); }, 0); // check now after load
|
||||||
|
|
||||||
|
$('#editorcontainer').addClass('initialized');
|
||||||
|
|
||||||
hooks.aCallAll("postAceInit", {ace: padeditor.ace, pad: pad});
|
hooks.aCallAll("postAceInit", {ace: padeditor.ace, pad: pad});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue