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

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

Issue 10834130: Extensions Docs Server: Doc conversion script - SVN (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 <div id="pageData-name" class="pageData">Manage Data</div> 1 <h1>Manage Data</h1>
2 <div id="pageData-showTOC" class="pageData">true</div> 2
3 3
4 <p> 4 <p>
5 Almost every aspect of app development involves some element 5 Almost every aspect of app development involves some element
6 of sending or receiving data. 6 of sending or receiving data.
7 Starting with the basics, 7 Starting with the basics,
8 you should use an MVC framework to help you design and implement your app 8 you should use an MVC framework to help you design and implement your app
9 so that data is completely separate from the app's view on that data 9 so that data is completely separate from the app's view on that data
10 (see <a href="app_frameworks.html">MVC Architecture</a>). 10 (see <a href="app_frameworks.html">MVC Architecture</a>).
11 </p> 11 </p>
12 12
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 writableFileEntry.createWriter(function(writer) { 219 writableFileEntry.createWriter(function(writer) {
220 writer.onerror = errorHandler; 220 writer.onerror = errorHandler;
221 writer.onwriteend = function(e) { 221 writer.onwriteend = function(e) {
222 console.log('write complete'); 222 console.log('write complete');
223 }; 223 };
224 writer.write(new Blob(['1234567890'], {type: 'text/plain'})); 224 writer.write(new Blob(['1234567890'], {type: 'text/plain'}));
225 }, errorHandler); 225 }, errorHandler);
226 }); 226 });
227 </pre> 227 </pre>
228 228
229 <p class="backtotop"><a href="#top">Back to top</a></p> 229 <p class="backtotop"><a href="#top">Back to top</a></p>
230
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698