Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andreabreu-me/eacc2c7f717586aa3d1a8b93ad87b5b5 to your computer and use it in GitHub Desktop.
Save andreabreu-me/eacc2c7f717586aa3d1a8b93ad87b5b5 to your computer and use it in GitHub Desktop.
Get a reference to some angular service in the console
// Get the injector
var injector = angular.element($0/*'[data-ng-app], [ng-app]'*/).injector();
// Get the service
var Service = injector.get('Service');
// Use it!
// Service.addNotification('Some Notification', 'info');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment