Added the rest of the functions to the readme

This commit is contained in:
Timothy Warren 2011-06-14 09:59:38 -07:00
parent 1b66cdd29d
commit 7e0d6e6940
1 changed files with 18 additions and 4 deletions

View File

@ -8,11 +8,9 @@ Browser support: IE8+, Latest versions of Firefox, Chrome, Safari, Opera
## Basic Use: ##
* Selector:
var x = $(selector);
* Selector: `var x = $(selector);`
* Function:
$_.module.function(params);
* Function: `$_.module.function(params);`
## Modules: ##
@ -43,6 +41,22 @@ Browser support: IE8+, Latest versions of Firefox, Chrome, Safari, Opera
* Get: Retrieves the value of the key in the url string
Use:
$_.qs.get(key);
**Store**: localstorage wrapper with automatic data serialization
functions
* Get:
Use:
$_.store.get(key);
* Set
Use:
$_.store.set(key, value);
* getALL: Retreives all localstorage data in raw form
Use:
$_.store.getAll();