Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom32i committed Mar 23, 2015
1 parent a1aa58f commit 7c8c4aa
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gamepad.js",
"version": "0.0.6",
"version": "0.1.0",
"description": "Simple HTML5 Gamepad API handler",
"keywords": [
"gamepad",
Expand All @@ -18,7 +18,7 @@
],
"main": "dist/gamepad.min.js",
"dependencies": {
"tom32i-event-emitter.js": "~0.0.*",
"tom32i-event-emitter.js": "~0.1.*",
"tom32i-option-resolver.js": "~0.0.*"
},
"ignore": [
Expand Down
6 changes: 3 additions & 3 deletions dist/gamepad.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/*!
* gamepad.js 0.0.6
* gamepad.js 0.1.0
* https://github.com/Tom32i/gamepad.js
* Copyright 2014 Thomas JARRAND
*/

/*!
* event-emitter.js 0.0.2
* event-emitter.js 0.1.0
* https://github.com/Tom32i/event-emitter.js
* Copyright 2014 Thomas JARRAND
*/

function EventEmitter(){this._events={}}EventEmitter.prototype.emit=function(t,e){if("undefined"!=typeof this._events[t])for(var n=this._events[t],i=n.length,o={type:t,detail:e},v=0;i>v;v++)n[v](o)},EventEmitter.prototype.addEventListener=function(t,e){"undefined"==typeof this._events[t]&&(this._events[t]=[]),this._events[t].push(e)},EventEmitter.prototype.removeEventListener=function(t,e){if("undefined"!=typeof this._events[t]){var n=this._events[t],i=n.indexOf(e);i>=0&&n.splice(i,1),n.length||delete this._events[t]}},EventEmitter.prototype.on=EventEmitter.prototype.addEventListener,EventEmitter.prototype.off=EventEmitter.prototype.removeEventListener;
function EventEmitter(){this._events={}}EventEmitter.prototype.emit=function(e,t){if("undefined"!=typeof this._events[e])for(var n=this._events[e],i=n.length,o={type:e,detail:t},s=0;i>s;s++)n[s](o)},EventEmitter.prototype.addEventListener=function(e,t){"undefined"==typeof this._events[e]&&(this._events[e]=[]),this._events[e].indexOf(t)<0&&this._events[e].push(t)},EventEmitter.prototype.removeEventListener=function(e,t){if("undefined"!=typeof this._events[e]){var n=this._events[e],i=n.indexOf(t);i>=0&&n.splice(i,1),n.length||delete this._events[e]}},EventEmitter.prototype.on=EventEmitter.prototype.addEventListener,EventEmitter.prototype.off=EventEmitter.prototype.removeEventListener;
/*!
* option-resolver.js 0.0.2
* https://github.com/Tom32i/option-resolver.js
Expand Down
4 changes: 2 additions & 2 deletions dist/gamepad.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/gamepad.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* gamepad.js 0.0.6
* gamepad.js 0.1.0
* https://github.com/Tom32i/gamepad.js
* Copyright 2014 Thomas JARRAND
*/
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": "gamepad.js",
"version": "0.0.6",
"version": "0.1.0",
"description": "Simple HTML5 Gamepad API handler",
"keywords": [
"gamepad",
Expand Down

0 comments on commit 7c8c4aa

Please sign in to comment.