Fixed deformation of getting started popovers
This commit is contained in:
parent
538d55dbfc
commit
b448f92c61
1 changed files with 6 additions and 3 deletions
|
|
@ -21,21 +21,24 @@ app.views.PublisherGettingStarted = Backbone.View.extend({
|
||||||
offset: 30,
|
offset: 30,
|
||||||
id: 'first_message_explain',
|
id: 'first_message_explain',
|
||||||
placement: 'right',
|
placement: 'right',
|
||||||
html: true
|
html: true,
|
||||||
|
container: 'body'
|
||||||
}, 600);
|
}, 600);
|
||||||
this._addPopover(this.el_visibility, {
|
this._addPopover(this.el_visibility, {
|
||||||
trigger: 'manual',
|
trigger: 'manual',
|
||||||
offset: 10,
|
offset: 10,
|
||||||
id: 'message_visibility_explain',
|
id: 'message_visibility_explain',
|
||||||
placement: 'bottom',
|
placement: 'bottom',
|
||||||
html: true
|
html: true,
|
||||||
|
container: 'body'
|
||||||
}, 1000);
|
}, 1000);
|
||||||
this._addPopover(this.el_stream, {
|
this._addPopover(this.el_stream, {
|
||||||
trigger: 'manual',
|
trigger: 'manual',
|
||||||
offset: -5,
|
offset: -5,
|
||||||
id: 'stream_explain',
|
id: 'stream_explain',
|
||||||
placement: 'left',
|
placement: 'left',
|
||||||
html: true
|
html: true,
|
||||||
|
container: 'body'
|
||||||
}, 1400);
|
}, 1400);
|
||||||
|
|
||||||
// hide some popovers when a post is created
|
// hide some popovers when a post is created
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue