Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: chrome/common/extensions/docs/templates/articles/angular_framework.html

Issue 2534693002: Reduce usage of webkit prefixes in extension examples (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
180 &lt;style> 180 &lt;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 &lt;/style> 192 &lt;/style>
193 </pre> 193 </pre>
194 <pre data-filename="main.html"> 194 <pre data-filename="main.html">
195 &lt;button class="btn" id="close-button" title="Close">x&lt;/button> 195 &lt;button class="btn" id="close-button" title="Close">x&lt;/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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698