Skip to content

Commit

Permalink
FIX: Add back in footer padding. iPad is broken for other reasons.
Browse files Browse the repository at this point in the history
  • Loading branch information
eviltrout committed Nov 10, 2015
1 parent 1651c8c commit b05f6dd
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions app/assets/javascripts/discourse/views/composer.js.es6
Expand Up @@ -21,13 +21,10 @@ const ComposerView = Ember.View.extend(Ember.Evented, {
return composeState || Composer.CLOSED;
},

movePanels() {
movePanels(sizePx) {

// Do we need these anymore? causes issues on iPad. Reply sometimes does not
// show composer due to bottom padding.

// $('#main-outlet').css('padding-bottom', sizePx);
// $('.composer-popup').css('bottom', sizePx);
$('#main-outlet').css('padding-bottom', sizePx);
$('.composer-popup').css('bottom', sizePx);

// signal the progress bar it should move!
this.appEvents.trigger("composer:resized");
Expand Down

0 comments on commit b05f6dd

Please sign in to comment.