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

Side by Side Diff: src/site/docs/tutorials/indexeddb/index.markdown

Issue 20051004: created common nav bar in footer, changed send feedback link (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: new send feedback links for KW, + moved nav stuff to common footer Created 7 years, 5 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 --- 1 ---
2 layout: default 2 layout: default
3 title: "Target 11: Use IndexedDB" 3 title: "Target 11: Use IndexedDB"
4 description: "Use IndexedDB for persistence and offline capability for your app. " 4 description: "Use IndexedDB for persistence and offline capability for your app. "
5 has-permalinks: true 5 has-permalinks: true
6 tutorial: 6 tutorial:
7 id: indexeddb 7 id: indexeddb
8 next: index.html
9 next-title: "Home"
10 prev: forms
11 prev-title: "Get Input from a Form"
8 --- 12 ---
9 13
10 {% capture whats_the_point %} 14 {% capture whats_the_point %}
11 15
12 * IndexedDB is a new standard for client-side storage in modern web browsers. 16 * IndexedDB is a new standard for client-side storage in modern web browsers.
13 * Client-side storage provides persistence, offline capability, 17 * Client-side storage provides persistence, offline capability,
14 and other advantages. 18 and other advantages.
15 * IndexedDB lets you store significant amounts of structured data. 19 * IndexedDB lets you store significant amounts of structured data.
16 * Indices allow for high performance searches. 20 * Indices allow for high performance searches.
17 * The dart:indexed_db library provides the API for IndexedDB for Dart apps. 21 * The dart:indexed_db library provides the API for IndexedDB for Dart apps.
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 </li> 732 </li>
729 </ul> 733 </ul>
730 734
731 ###What next? 735 ###What next?
732 736
733 Check out our 737 Check out our
734 <a href="/codelabs/web-ui-writer/index.html" target="_blank"><i class="icon-beak er"> </i>Codelab</a>; 738 <a href="/codelabs/web-ui-writer/index.html" target="_blank"><i class="icon-beak er"> </i>Codelab</a>;
735 it uses LocalStorage instead of IndexedDB to store data in the client. 739 it uses LocalStorage instead of IndexedDB to store data in the client.
736 Try converting it to use IndexedDB. 740 Try converting it to use IndexedDB.
737 741
738 <hr>
739
740 <div class="row">
741 <div class="span3">
742 <a href="/docs/tutorials/forms/"><i class="icon-chevron-left"> </i> Get Input from a Form</a>
743 </div>
744 <div class="span3">
745 <a href="http://code.google.com/p/dart/issues/entry?template=Tutorial%20feedback "
746 target="_blank">
747 <i class="icon-comment"> </i>
748 Send feedback
749 </a>
750 </div>
751 <div class="span3">
752 <a href="/docs/tutorials/" class="pull-right">Home <i class="icon-chevron-righ t"> </i> </a>
753 </div>
754 </div>
755
756 {% endcapture %} 742 {% endcapture %}
757 743
758 {% include tutorial.html %} 744 {% include tutorial.html %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698