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 2015/11/12 16:06:52 UTC

svn commit: r1714065 - /incubator/zeppelin/site/docs/displaysystem/angular.html

Author: moon
Date: Thu Nov 12 15:06:51 2015
New Revision: 1714065

URL: http://svn.apache.org/viewvc?rev=1714065&view=rev
Log:
Zeppelin-web-docs] angular (beta) description fix
https://github.com/apache/incubator-zeppelin/pull/421


Modified:
    incubator/zeppelin/site/docs/displaysystem/angular.html

Modified: incubator/zeppelin/site/docs/displaysystem/angular.html
URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/displaysystem/angular.html?rev=1714065&r1=1714064&r2=1714065&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/displaysystem/angular.html (original)
+++ incubator/zeppelin/site/docs/displaysystem/angular.html Thu Nov 12 15:06:51 2015
@@ -25,7 +25,11 @@
     <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
     <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
     <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
-  -->
+    -->
+
+    <!-- Js -->
+    <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
+    <script src="/assets/themes/zeppelin/bootstrap/js/bootstrap.min.js"></script>
 
     <!-- atom & rss feed -->
     <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed">
@@ -160,6 +164,30 @@
       
     
   
+    
+      
+    
+  
+    
+      
+    
+  
+    
+      
+    
+  
+    
+      
+    
+  
+    
+      
+    
+  
+    
+      
+    
+  
 
 
 
@@ -265,6 +293,30 @@
   
     
       
+    
+  
+    
+      
+    
+  
+    
+      
+    
+  
+    
+      
+    
+  
+    
+      
+    
+  
+    
+      
+    
+  
+    
+      
       	
       	<li><a href="/download.html">Download</a></li>
       	
@@ -323,7 +375,7 @@
 It compiles templates and display inside of Zeppelin.</p>
 
 <p>Zeppelin provides gateway between your interpreter and your compiled AngularJS view teamplates.
-Therefore, you can not only update scope variable from your interpreter  but also watch your scope variable in the interpreter, which is JVM process.</p>
+Therefore, you can not only update scope variable from your interpreter but also watch your scope variable in the interpreter, which is JVM process.</p>
 
 <p><br /></p>
 
@@ -332,7 +384,7 @@ Therefore, you can not only update scope
 <p>To use angular display system, your output should starts with &quot;%angular&quot;.
 <img src="../../assets/themes/zeppelin/img/screenshots/display_angular.png" width=600px /></p>
 
-<p>Note that display system is backend independnet.</p>
+<p>Note that display system is backend independent.</p>
 
 <p>Because of variable &#39;name&#39; is not defined, &#39;Hello {{name}}&#39; display &#39;Hello &#39;.</p>
 
@@ -350,10 +402,10 @@ z.angularBind(String name, Object object
 z.angularBindGlobal(String name, Object object)
 
 // unbind angular scope variable &#39;name&#39; in current notebook.
-z.angularBind(String name)
+z.angularUnbind(String name)
 
 // unbind angular scope variable &#39;name&#39; in all notebooks related to current interpreter.
-z.angularBindGlobal(String name)
+z.angularUnbindGlobal(String name)
 </code></pre></div>
 <p>In the example, let&#39;s bind &quot;world&quot; variable &#39;name&#39;. Then you can see AngularJs view are updated immediately.</p>
 
@@ -414,9 +466,6 @@ z.angularBind(&quot;run&quot;, 0) will i
 
 
 
-    <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
-    
-    <script src="/assets/themes/zeppelin/bootstrap/js/bootstrap.min.js"></script>
   </body>
 </html>