possibly fixing issue where mobile composer textarea is not properly sized when initially opened. Sort of related to #2417

v1.18.x
Julian Lam 10 years ago
parent 4bbd3b47c0
commit 659d0f68cb

@ -253,7 +253,6 @@ define('composer', [
updateTitle(postData, postContainer);
activate(post_uuid);
resize.reposition(postContainer);
if (config.allowFileUploads || config.hasImageUploadPlugin) {
uploads.initialize(post_uuid);
@ -319,6 +318,7 @@ define('composer', [
formatting.addComposerButtons();
focusElements(postContainer);
resize.reposition(postContainer);
});
}

@ -1,7 +1,7 @@
'use strict';
/* globals define, config, utils*/
/* globals app, define, config, utils*/
define('composer/resize', function() {
var resize = {};
@ -38,6 +38,7 @@ define('composer/resize', function() {
postContainer.css('visibility', 'visible').css('z-index', 2);
// Add some extra space at the bottom of the body so that the user can still scroll to the last post w/ composer open
$('body').css({'margin-bottom': postContainer.css('height')});
resizeWritePreview(postContainer);

Loading…
Cancel
Save