mirror of
https://github.com/vale981/event-pubsub
synced 2025-03-05 09:31:42 -05:00
invalid var name fix
This commit is contained in:
parent
d83e5a6db8
commit
081dcafd18
3 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ window.pubsub=(
|
|||
i++
|
||||
){
|
||||
params.unshift(keys[i]);
|
||||
this.off.call(args);
|
||||
this.off.call(params);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ function unsub(type,handler){
|
|||
i++
|
||||
){
|
||||
params.unshift(keys[i]);
|
||||
this.off.call(args);
|
||||
this.off.call(params);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "event-pubsub",
|
||||
"version": "2.1.0",
|
||||
"version": "2.1.1",
|
||||
"description": "Pubsub events for Node and the browser allowing event scoping and multiple scopes. Easy for any developer level. No frills, just high speed pubsub events!",
|
||||
"main": "event-pubsub.js",
|
||||
"directories": {
|
||||
|
|
Loading…
Add table
Reference in a new issue