| OLD | NEW |
| 1 <meta name="doc-family" content="apps"> | 1 <meta name="doc-family" content="apps"> |
| 2 <h1>Build Apps with AngularJS</h1> | 2 <h1>Build Apps with AngularJS</h1> |
| 3 <!--Article written by Eric Bidelman--> | 3 <!--Article written by Eric Bidelman--> |
| 4 <p> | 4 <p> |
| 5 This guide gets you started building Chrome Apps | 5 This guide gets you started building Chrome Apps |
| 6 with the <a href="http://angularjs.org/">AngularJS</a> MVC framework. | 6 with the <a href="http://angularjs.org/">AngularJS</a> MVC framework. |
| 7 To illustrate Angular in action, | 7 To illustrate Angular in action, |
| 8 we'll be referencing an actual app built using the framework, | 8 we'll be referencing an actual app built using the framework, |
| 9 the Google Drive Uploader. | 9 the Google Drive Uploader. |
| 10 The <a href="https://github.com/GoogleChrome/chrome-app-samples/tree/master/samp
les/gdrive">source code</a> | 10 The <a href="https://github.com/GoogleChrome/chrome-app-samples/tree/master/samp
les/gdrive">source code</a> |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 <style> | 180 <style> |
| 181 nav:hover #close-button { | 181 nav:hover #close-button { |
| 182 opacity: 1; | 182 opacity: 1; |
| 183 } | 183 } |
| 184 | 184 |
| 185 #close-button { | 185 #close-button { |
| 186 float: right; | 186 float: right; |
| 187 padding: 0 5px 2px 5px; | 187 padding: 0 5px 2px 5px; |
| 188 font-weight: bold; | 188 font-weight: bold; |
| 189 opacity: 0; | 189 opacity: 0; |
| 190 -webkit-transition: all 0.3s ease-in-out; | 190 transition: all 0.3s ease-in-out; |
| 191 } | 191 } |
| 192 </style> | 192 </style> |
| 193 </pre> | 193 </pre> |
| 194 <pre data-filename="main.html"> | 194 <pre data-filename="main.html"> |
| 195 <button class="btn" id="close-button" title="Close">x</button> | 195 <button class="btn" id="close-button" title="Close">x</button> |
| 196 </pre> | 196 </pre> |
| 197 | 197 |
| 198 <p> | 198 <p> |
| 199 In | 199 In |
| 200 <a href="https://github.com/GoogleChrome/chrome-app-samples/blob/master/samples/
gdrive/js/app.js">app.js</a>, | 200 <a href="https://github.com/GoogleChrome/chrome-app-samples/blob/master/samples/
gdrive/js/app.js">app.js</a>, |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 $scope.fetchDocs(); | 750 $scope.fetchDocs(); |
| 751 }); | 751 }); |
| 752 }); | 752 }); |
| 753 }); | 753 }); |
| 754 | 754 |
| 755 return gdocs; | 755 return gdocs; |
| 756 }); | 756 }); |
| 757 </pre> | 757 </pre> |
| 758 | 758 |
| 759 <p class="backtotop"><a href="#top">Back to top</a></p> | 759 <p class="backtotop"><a href="#top">Back to top</a></p> |
| OLD | NEW |