2016-10-19 20:41:04 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export const UPGRADE_MODULE_NAME = '$$UpgradeModule';
|
|
|
|
|
export const INJECTOR_KEY = '$$angularInjector';
|
|
|
|
|
|
|
|
|
|
export const $INJECTOR = '$injector';
|
|
|
|
|
export const $PARSE = '$parse';
|
2016-10-20 10:47:56 +00:00
|
|
|
export const $ROOT_SCOPE = '$rootScope';
|
2016-10-19 20:41:04 +00:00
|
|
|
export const $SCOPE = '$scope';
|
|
|
|
|
|
|
|
|
|
export const $COMPILE = '$compile';
|
|
|
|
|
export const $TEMPLATE_CACHE = '$templateCache';
|
|
|
|
|
export const $HTTP_BACKEND = '$httpBackend';
|
|
|
|
|
export const $CONTROLLER = '$controller';
|