You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
It is impossible to define a provider that depends on another provider in the minified version of an application. The following code:
varmyApp=angular.module('myApp',[]).provider('crudRouteProvider',['$routeProvider',function(e){this.doSthWithRouteProvider=function(pathPrefix){//do something with $routeProvider here};this.$get=function(){return{};};}]);