Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kenwheeler committed Nov 7, 2014
1 parent 94791be commit a208137
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mcfly",
"description": "Flux architecture made easy",
"version": "0.0.3",
"version": "0.0.4",
"main": "dist/McFly.js",
"license": "https://github.com/kenwheeler/mcfly/blob/master/LICENSE",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions dist/McFly.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ var Dispatcher = require('./Dispatcher');
/**
* Calls callback method from Dispatcher
*
* @param {object} payload - Data argument for callback method
* @param {...*} arguments - arguments for callback method
* @constructor
*/
Action.prototype.dispatch=function(payload) {"use strict";
Dispatcher.dispatch(this.callback(payload));
Action.prototype.dispatch=function() {"use strict";
Dispatcher.dispatch(this.callback.apply(this, arguments));
};


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": "mcfly",
"version": "0.0.3",
"version": "0.0.4",
"description": "Flux architecture made easy",
"keywords": [
"flux",
Expand Down
2 changes: 1 addition & 1 deletion src/Action.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ class Action {
}
}

module.exports = Action;
module.exports = Action;

0 comments on commit a208137

Please sign in to comment.