Author: ahyoungryu
Date: Sun Mar  5 07:34:20 2017
New Revision: 1785532

URL: http://svn.apache.org/viewvc?rev=1785532&view=rev
Log: (empty)

Modified:
    zeppelin/site/contribution/zeppelinweb/goodPracticeGuide01.html
    zeppelin/site/contribution/zeppelinweb/goodPracticeGuide04.html

Modified: zeppelin/site/contribution/zeppelinweb/goodPracticeGuide01.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/contribution/zeppelinweb/goodPracticeGuide01.html?rev=1785532&r1=1785531&r2=1785532&view=diff
==============================================================================
--- zeppelin/site/contribution/zeppelinweb/goodPracticeGuide01.html (original)
+++ zeppelin/site/contribution/zeppelinweb/goodPracticeGuide01.html Sun Mar  5 
07:34:20 2017
@@ -453,9 +453,8 @@ We should have only one Angular Componen
 
   angular.module('zeppelinWebApp').controller('HomeCtrl', 
HomeCtrl);
 
-  HomeCtrl.$inject = ['$location'];
-
   function HomeCtrl($location) {
+  'ngInject';
     ...
   }
 

Modified: zeppelin/site/contribution/zeppelinweb/goodPracticeGuide04.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/contribution/zeppelinweb/goodPracticeGuide04.html?rev=1785532&r1=1785531&r2=1785532&view=diff
==============================================================================
--- zeppelin/site/contribution/zeppelinweb/goodPracticeGuide04.html (original)
+++ zeppelin/site/contribution/zeppelinweb/goodPracticeGuide04.html Sun Mar  5 
07:34:20 2017
@@ -452,7 +452,7 @@ We recommend the usage of <code>ng-bind<
 <p>It allows some performance improvements compared to the usual <code>{{ 
}}</code> syntax, without adding too much code complexity.</p>
 
 <p>Your code would then look like:</p>
-<figure class="highlight"><pre><code class="language-text" 
data-lang="text">&lt;div ng-bing=&#39;home.myValue&#39;&gt;&lt;/div&gt;
+<figure class="highlight"><pre><code class="language-text" 
data-lang="text">&lt;div ng-bind=&#39;home.myValue&#39;&gt;&lt;/div&gt;
 </code></pre></figure>
 <p>Instead of:</p>
 <figure class="highlight"><pre><code class="language-text" 
data-lang="text">&lt;div&gt;


Reply via email to