Closed scottpersinger closed 10 years ago
Haha, the most classic and insidious of Javascript bugs - missing 'var' label leading to a local var treated as a global.
Yup, this got hosed in the refactor. Thanks for catching this in the beta.
Released in v0.8.0-beta.5
Lack of
var
token is letting what should be a local variable treated as a global so that subsequent subscriptions handlers clobber the initial ones. Fixes #53