Skip to content

Commit

Permalink
release: 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azaslavsky committed Dec 30, 2014
1 parent 86569c5 commit a704c0c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Clear all or part of the hash
**Params**

- \[opts\] `Object` - No options means we clear the entire string
- \[params+false\] `string` | `Array.<string>` - A string, or an array of them, of specifying a parameter to clear
- \[params=false\] `string` | `Array.<string>` - A string, or an array of them, of specifying a parameter to clear
- \[groups=false\] `string` | `Array.<string>` | `boolean` - True means clear all grouped parameters; can also be array of specific groups to clear
- \[globals=false\] `boolean` - True means clear all global parameters
- \[apply=true\] `boolean` - True means the actual window.location.hash will be cleared immediately; if opts.target is set, this will be forced into a false state
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backbone-hashMate",
"version": "0.1.0",
"version": "0.2.0",
"description": "Like jQuery BBQ, but for Backbone. HashMate extends Backbone.Router to store and respond to information contained in the URL's hash fragment. Useful for state management, referral handling, history and more.",
"main": "dist/backbone-hashMate.js",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Clear all or part of the hash
**Params**

- \[opts\] `Object` - No options means we clear the entire string
- \[params+false\] `string` | `Array.<string>` - A string, or an array of them, of specifying a parameter to clear
- \[params=false\] `string` | `Array.<string>` - A string, or an array of them, of specifying a parameter to clear
- \[groups=false\] `string` | `Array.<string>` | `boolean` - True means clear all grouped parameters; can also be array of specific groups to clear
- \[globals=false\] `boolean` - True means clear all global parameters
- \[apply=true\] `boolean` - True means the actual window.location.hash will be cleared immediately; if opts.target is set, this will be forced into a false state
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "backbone-hashmate",
"author": "Alex Zaslavsky <alex.y.zaslavsky@gmail.com>",
"version": "0.1.0",
"version": "0.2.0",
"description": "Like jQuery BBQ, but for Backbone. HashMate extends Backbone.Router to store and respond to information contained in the URL's hash fragment. Useful for state management, referral handling, history and more.",
"contributors": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/backbone-hashMate.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
* Clear all or part of the hash
* @method
* @param {Object} [opts] No options means we clear the entire string
* @param {string|string[]} [opts.params+false] A string, or an array of them, of specifying a parameter to clear
* @param {string|string[]} [opts.params=false] A string, or an array of them, of specifying a parameter to clear
* @param {string|string[]|boolean} [opts.groups=false] True means clear all grouped parameters; can also be array of specific groups to clear
* @param {boolean} [opts.globals=false] True means clear all global parameters
* @param {boolean} [opts.apply=true] True means the actual window.location.hash will be cleared immediately; if opts.target is set, this will be forced into a false state
Expand Down

0 comments on commit a704c0c

Please sign in to comment.