Skip to content

Instantly share code, notes, and snippets.

@mtford90
Last active August 29, 2015 14:13
Show Gist options
  • Save mtford90/412fc8c4721206f7a199 to your computer and use it in GitHub Desktop.
Save mtford90/412fc8c4721206f7a199 to your computer and use it in GitHub Desktop.
var oldOn = siesta.events.on;
siesta.events.on = function (event, fn) {
oldOn.call(siesta.events, event, function (e) {
$rootScope.$apply(function () {
fn(e);
})
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment