Skip to content

Instantly share code, notes, and snippets.

@clemgrim
Created April 19, 2016 12:04
Show Gist options
  • Save clemgrim/1f69097d5c8db52e0251064f30bfb36a to your computer and use it in GitHub Desktop.
Save clemgrim/1f69097d5c8db52e0251064f30bfb36a to your computer and use it in GitHub Desktop.
angular.module('app').config( ['$provide', function ($provide){
$provide.decorator('$browser', ['$delegate', function ($delegate) {
$delegate.onUrlChange = function () {};
$delegate.url = function () { return ""};
return $delegate;
}]);
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment