From b448f92c612950d382b78f16a81610dddaed97b7 Mon Sep 17 00:00:00 2001
From: jaideng123 <jaideng123@yahoo.com>
Date: Wed, 17 Sep 2014 21:10:25 -0500
Subject: [PATCH] Fixed deformation of getting started popovers

---
 .../app/views/publisher/getting_started_view.js          | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/app/assets/javascripts/app/views/publisher/getting_started_view.js b/app/assets/javascripts/app/views/publisher/getting_started_view.js
index f3e6142cd3..fd0f921bf9 100644
--- a/app/assets/javascripts/app/views/publisher/getting_started_view.js
+++ b/app/assets/javascripts/app/views/publisher/getting_started_view.js
@@ -21,21 +21,24 @@ app.views.PublisherGettingStarted = Backbone.View.extend({
       offset: 30,
       id: 'first_message_explain',
       placement: 'right',
-      html: true
+      html: true,
+      container: 'body'
     }, 600);
     this._addPopover(this.el_visibility, {
       trigger: 'manual',
       offset: 10,
       id: 'message_visibility_explain',
       placement: 'bottom',
-      html: true
+      html: true,
+      container: 'body'
     }, 1000);
     this._addPopover(this.el_stream, {
       trigger: 'manual',
       offset: -5,
       id: 'stream_explain',
       placement: 'left',
-      html: true
+      html: true,
+      container: 'body'
     }, 1400);
 
     // hide some popovers when a post is created
-- 
GitLab