Skip to content

Commit 9c16c2b

Browse files
committed
Fix lint errors
1 parent 1c0c184 commit 9c16c2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/raven.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -563,15 +563,15 @@ Raven.prototype = {
563563
return orig(args[0], args[1]);
564564
}
565565
};
566-
};
566+
}
567567

568568
fill(window, 'setTimeout', wrapTimeFn);
569569
fill(window, 'setInterval', wrapTimeFn);
570570
if (window.requestAnimationFrame) {
571571
fill(window, 'requestAnimationFrame', function (orig) {
572572
return function (cb) {
573573
orig(self.wrap(cb));
574-
}
574+
};
575575
});
576576
}
577577

@@ -588,7 +588,7 @@ Raven.prototype = {
588588
}
589589
} catch (err) {} // can sometimes get 'Permission denied to access property "handle Event'
590590
return orig.call(this, evt, self.wrap(fn, {eventHandler: true}), capture, secure);
591-
}
591+
};
592592
});
593593
}
594594
});

0 commit comments

Comments
 (0)