Skip to content

Commit

Permalink
Change const to var in initalState
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Dail authored and Brandon Dail committed Feb 26, 2016
1 parent 75b96bc commit 730f31d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/

function initialState(id, callback) {
const scopedState = {
var scopedState = {
__uniqueID__: id,
callback: callback,
handlers: [],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "respondable",
"version": "0.1.0",
"version": "0.1.1",
"description": "Utilizes matchMedia to performantly return conditional values based on media queries.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 730f31d

Please sign in to comment.