This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 4 files changed +16
-4
lines changed 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,13 @@ function $ControllerProvider() {
58
58
/**
59
59
* @ngdoc method
60
60
* @name $controllerProvider#allowGlobals
61
- * @description If called, allows `$controller` to find controller constructors on `window`
61
+ *
62
+ * @deprecated
63
+ * sinceVersion="v1.3.0"
64
+ * removeVersion="v1.7.0"
65
+ * This method of finding controllers has been deprecated.
66
+ *
67
+ * @description If called, allows `$controller` to find controller constructors on `window` *
62
68
*/
63
69
this . allowGlobals = function ( ) {
64
70
globals = true ;
Original file line number Diff line number Diff line change @@ -346,7 +346,10 @@ function $HttpProvider() {
346
346
* @name $httpProvider#useLegacyPromiseExtensions
347
347
* @description
348
348
*
349
- * _Deprecated_ - This method will be removed in v1.6.0 along with the legacy promise methods.
349
+ * @deprecated
350
+ * sinceVersion="v1.4.4"
351
+ * removeVersion="v1.6.0"
352
+ * This method will be removed in v1.6.0 along with the legacy promise methods.
350
353
*
351
354
* Configure `$http` service to return promises without the shorthand methods `success` and `error`.
352
355
* This should be used to make sure that applications work without these methods.
@@ -501,7 +504,8 @@ function $HttpProvider() {
501
504
*
502
505
* ## Deprecation Notice
503
506
* <div class="alert alert-danger">
504
- * The `$http` legacy promise methods `success` and `error` have been deprecated.
507
+ * The `$http` legacy promise methods `success` and `error` have been deprecated and will be
508
+ * removed in v1.6.0.
505
509
* Use the standard `then` method instead.
506
510
* If {@link $httpProvider#useLegacyPromiseExtensions `$httpProvider.useLegacyPromiseExtensions`} is set to
507
511
* `false` then these methods will throw {@link $http:legacy `$http/legacy`} error.
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ angular.module('ngCookies').
5
5
* @ngdoc service
6
6
* @name $cookieStore
7
7
* @deprecated
8
+ * sinceVersion="v1.4.0"
8
9
* Please use the {@link ngCookies.$cookies `$cookies`} service instead.
9
10
*
10
11
* @requires $cookies
Original file line number Diff line number Diff line change 8
8
* @ngdoc directive
9
9
* @name ngClick
10
10
* @deprecated
11
- * Beginning with Angular 1.5, this directive is deprecated and by default **disabled**.
11
+ * sinceVersion="v1.5.0"
12
+ * This directive is deprecated and **disabled** by default.
12
13
* The directive will receive no further support and might be removed from future releases.
13
14
* If you need the directive, you can enable it with the {@link ngTouch.$touchProvider $touchProvider#ngClickOverrideEnabled}
14
15
* function. We also recommend that you migrate to [FastClick](https://github.com/ftlabs/fastclick).
You can’t perform that action at this time.
0 commit comments