Skip to content

Commit

Permalink
Remove three more occurrences of double spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
beverloo committed Jan 24, 2012
1 parent 1b140b6 commit c465c0d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion posts/background-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ tags: gtie8
kind: css
polyfillurls:

New css3 background-image options includes background-clip, background-origin and background-size. They are each supported in modern browsers and can be used today.
New css3 background-image options includes background-clip, background-origin and background-size. They are each supported in modern browsers and can be used today.
2 changes: 1 addition & 1 deletion posts/font-feature-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: css
polyfillurls:
moreurl: http://blog.fontdeck.com/post/15777165734/opentype-1?503cde40

Internet Explorer 10, Firefox 4+ and Chrome 16 (Windows only) support low level control over font feature settings. What this means is other browsers merely will not render the flourishes you seek. Many features available through the property may be extracted to separate properties in the future, such as font-variant-ligatures.
Internet Explorer 10, Firefox 4+ and Chrome 16 (Windows and Linux only) support low level control over font feature settings. What this means is other browsers merely will not render the flourishes you seek. Many features available through the property may be extracted to separate properties in the future, such as font-variant-ligatures.
2 changes: 1 addition & 1 deletion posts/localstorage.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ tags: gtie7 polyfill
kind: api
polyfillurls:[Remy's storage polyfill](https://gist.github.com/350433), [sessionstorage](http://code.google.com/p/sessionstorage/)

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.
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.
2 changes: 1 addition & 1 deletion posts/selectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ Resources:
if (elem.innerText.trim() == 'Yes') elem.style.backgroundColor = 'green';
});
-->
-->

0 comments on commit c465c0d

Please sign in to comment.