FIX: Add back in footer padding. iPad is broken for other reasons.

This commit is contained in:
Robin Ward 2015-11-10 12:55:21 -05:00
parent 1651c8c2e7
commit b05f6ddbe1
1 changed files with 3 additions and 6 deletions

View File

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