Skip to content

Commit

Permalink
Removed duplicated bullets in AppCache
Browse files Browse the repository at this point in the history
Also replaced "loggued" term for "logged".
  • Loading branch information
Adrian committed Mar 9, 2013
1 parent 541696e commit 5179ecf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion MasterPage.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<script>
$(document).ready(function ()
{
$('#LoggedIn').html('<span><b>' + 'Loggued User: ' + sessionStorage.MFUserName + '</b></span>');
$('#LoggedIn').html('<span><b>' + 'Logged User: ' + sessionStorage.MFUserName + '</b></span>');
$('#htmlLogo').mouseover(function (event) { this.src = 'Images/html5BlackLogo.jpg'; });
$('#htmlLogo').mouseout(function (event) { this.src = 'Images/html5OrangeLogo.jpg'; });

Expand Down
13 changes: 5 additions & 8 deletions Views/WhatIsNew.html
Original file line number Diff line number Diff line change
Expand Up @@ -415,11 +415,11 @@ <h3 style="text-align: right;">
<h2>Storage</h2>
<h3 style="text-align: right;">
JavaScript API</h3>
</br><ul>
<ul>
<li>With html5 and the javascript API allow save data on the client device usign different strategies.</li>
</br><h2>Web SQL Dabase</h2>
<li><br>We can create a structured data base in the client device</li>
</ul></br>
<h2>Web SQL Dabase</h2>
<li>We can create a structured data base in the client device</li>
</ul>
<pre class="prettyprint">
var db = window.openDatabase("DBName", "1.0", "description",
5*1024*1024); //5MB
Expand Down Expand Up @@ -466,10 +466,7 @@ <h3 style="text-align: right;">
<h2>Application Cache</h2>
<h3 style="text-align: right;">
JavaScript API</h3>
<ul>
<li>It's a key value mapping, so we don't have to iterate for each item</li>
<li>The key value support only string-to-string mapping</li>
</ul></br>

<pre class="prettyprint">
<span class="tag">&lt;html manifest="cache.appcache"></span>
window.applicationCache.addEventListener('updateready', function(e) {
Expand Down

0 comments on commit 5179ecf

Please sign in to comment.