fix an issue reported by ctemplin that prevents event handlers from being removed

pull/17/head
Mike Hamburg 14 years ago
parent c3435d1be3
commit ac441e835e

@ -221,7 +221,7 @@ sjcl.random = {
*/
for (j in cbs) {
if (cbs.hasOwnProperty[j] && cbs[j] === cb) {
if (cbs.hasOwnProperty(j) && cbs[j] === cb) {
jsTemp.push(j);
}
}

Loading…
Cancel
Save