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

This commit is contained in:
Julian Lam
2015-01-06 11:14:25 -05:00
parent 4bbd3b47c0
commit 659d0f68cb
2 changed files with 3 additions and 2 deletions

View File

@@ -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);
});
}

View File

@@ -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);