From ff03ed8a36389a5fa926d0f4927b462095a1aec0 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Mon, 23 Jan 2012 09:30:57 -0800 Subject: [PATCH] disclaimer offered after a chat with @iandevlin --- css/style.css | 3 +++ index.html | 10 ++++++---- sass/style.scss | 2 ++ template.html | 2 ++ 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/css/style.css b/css/style.css index 2bc53bd1..39085af4 100644 --- a/css/style.css +++ b/css/style.css @@ -705,6 +705,9 @@ body > footer { font-weight: normal; display: block; } +.builders small { + display: block; +} code { background: #f0f0f0; diff --git a/index.html b/index.html index 676515bd..bf477b66 100644 --- a/index.html +++ b/index.html @@ -809,7 +809,7 @@

localStorage

-

Local and session storage are a great way to store data without resorting to cookies. IE8 supported localStorage and sessionStorage so you may not need a polyfill. If you do, Remy's is a piece of cake to immplement and use.

+

Local and session storage are a great way to store data without resorting to cookies. IE8 supported localStorage and sessionStorage so you may not need a polyfill. If you do, Remy's is a piece of cake to implement and use.

This is a simple key/value store, so if you want to store complex data use JSON.parse(str) and JSON.stringify(obj) on your way in and out. There is also no way to know if you exceeded the storage cross-browser, so wrap your store commands in try/catch. Up to 5MB is safe to use.

@@ -1585,11 +1585,11 @@

websockets

-

Making your app real-time is a huge boost and Socket.io helps with downlevel transports for browsers lacking native websocket support (and supports IE6+). However be prepared to tune your AJAX polling or Comet in order to meet the needs of your app.

+

Making your app real-time is a huge boost and Socket.io is a Node+Javascript framework that helps with downlevel transports for browsers lacking native websocket support (and supports IE6+). However be prepared to tune your AJAX polling or Comet in order to meet the needs of your app.

-

As a word of caution, the protocol backing the Web Socket API has changed several times in the past year, but should have matured enough to not introduce any more breaking changes.

+

As a word of caution, the protocol backing the Web Socket API has changed several times in the past year, but has matured enough to not introduce any more breaking changes.

-
Recommended polyfills:

Socket.io

+
Recommended polyfills:

Socket.io, web-socket-js

WebSQL DB

HTML5 Please is a community project (contribute on github!) from the people behind HTML5 Boilerplate, Modernizr & CSS3 Please.

Divya ManianDivya Manian Paul IrishPaul Irish Tim BranyenTim Branyen Connor MontgomeryConnor Montgomery & more

+ While named HTML5 Please, this site discusses features beyond the HTML5 specification, coming from CSS, SVG, and the greater Open Web Platform umbrella. +

diff --git a/sass/style.scss b/sass/style.scss index d9d7c383..c613e236 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -543,6 +543,8 @@ body > footer { font-weight: normal; display: block; } + + small { display:block; } } code { diff --git a/template.html b/template.html index 0c6a2060..0a48b331 100644 --- a/template.html +++ b/template.html @@ -72,6 +72,8 @@

{{{featuretag feature}}}

HTML5 Please is a community project (contribute on github!) from the people behind HTML5 Boilerplate, Modernizr & CSS3 Please.

Divya ManianDivya Manian Paul IrishPaul Irish Tim BranyenTim Branyen Connor MontgomeryConnor Montgomery & more

+ While named HTML5 Please, this site discusses features beyond the HTML5 specification, coming from CSS, SVG, and the greater Open Web Platform umbrella. +