You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2017/07/27 18:50:41 UTC

zeppelin git commit: [ZEPPELIN-2806] New paragraph does not displayed before refresh the page

Repository: zeppelin
Updated Branches:
  refs/heads/master 2e5900808 -> 49af089d5


[ZEPPELIN-2806] New paragraph does not displayed before refresh the page

### What is this PR for?
Problem reported in [ZEPPELIN-2806](https://issues.apache.org/jira/browse/ZEPPELIN-2806).
New paragraph is not displayed before page refresh.

The problem came from change made
https://issues.apache.org/jira/browse/ZEPPELIN-2519

I'm commenting out `viewport-watch` as a hotfix.

### What type of PR is it?
Hot Fix

### Todos
* [x] - Comment-out viewport-watch

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-2806

### Questions:
* Does the licenses files need updates? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Lee moon soo <mo...@apache.org>

Closes #2505 from Leemoonsoo/ZEPPELIN-2806 and squashes the following commits:

03f56bb [Lee moon soo] comment out viewport-watch


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/49af089d
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/49af089d
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/49af089d

Branch: refs/heads/master
Commit: 49af089d5813b5b30dd988d976352eaae393352c
Parents: 2e59008
Author: Lee moon soo <mo...@apache.org>
Authored: Wed Jul 26 19:11:34 2017 -0700
Committer: Lee moon soo <mo...@apache.org>
Committed: Thu Jul 27 11:50:38 2017 -0700

----------------------------------------------------------------------
 zeppelin-web/src/app/notebook/notebook.html | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/49af089d/zeppelin-web/src/app/notebook/notebook.html
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/notebook/notebook.html b/zeppelin-web/src/app/notebook/notebook.html
index 63ef98b..b96d08a 100644
--- a/zeppelin-web/src/app/notebook/notebook.html
+++ b/zeppelin-web/src/app/notebook/notebook.html
@@ -112,8 +112,11 @@ limitations under the License.
        ng-controller="ParagraphCtrl"
        ng-init="init(currentParagraph, note)"
        ng-class="columnWidthClass(currentParagraph.config.colWidth)"
-       style="margin: 0; padding: 0;"
+       style="margin: 0; padding: 0;">
+
+       <!-- see ZEPPELIN-2806
        viewport-watch>
+       -->
     <div class="new-paragraph" ng-click="insertNew('above')" ng-hide="viewOnly || asIframe || revisionView">
       <h4 class="plus-sign">&#43;</h4>
     </div>