mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 13:31:44 +08:00
Support customizing the composer below the textarea
This commit is contained in:
parent
24b282e5e9
commit
37d73ec488
|
@ -101,6 +101,7 @@ so I'm going to stop rendering it until we figure out what's up
|
|||
|
||||
{{#if currentUser}}
|
||||
<div class='submit-panel'>
|
||||
{{plugin-outlet "composer-fields-below"}}
|
||||
<button {{action "save"}} tabindex="5" {{bind-attr class=":btn :btn-primary :create disableSubmit:disabled"}} title="{{i18n 'composer.title'}}">{{{model.saveIcon}}}{{model.saveText}}</button>
|
||||
<a href='#' {{action "cancel"}} class='cancel' tabindex="6">{{i18n 'cancel'}}</a>
|
||||
</div>
|
||||
|
|
|
@ -73,6 +73,13 @@ var ComposerView = Discourse.View.extend(Ember.Evented, {
|
|||
if (pos) {
|
||||
self.$('.wmd-controls').css('top', $fields.height() + pos.top + 5);
|
||||
}
|
||||
|
||||
// get the submit panel height
|
||||
pos = self.$('.submit-panel').position();
|
||||
if (pos) {
|
||||
self.$('.wmd-controls').css('bottom', h - pos.top + 7);
|
||||
}
|
||||
|
||||
});
|
||||
}.observes('model.composeState', 'model.action'),
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user