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: ## ## Basic Use: ##
* Selector: * Selector: `var x = $(selector);`
var x = $(selector);
* Function: * Function: `$_.module.function(params);`
$_.module.function(params);
## Modules: ## ## 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 * Get: Retrieves the value of the key in the url string
Use: Use:
$_.qs.get(key); $_.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();