* @ngdoc service * @name $window * @this * * @description * A reference to the browser's `window` object. While `window` * is globally available in JavaScript, it causes testability problems, because * it is a global variable. In AngularJS we always refer to it through the * `$window` servic
()
| 21883 | </example> |
| 21884 | */ |
| 21885 | function $WindowProvider() { |
| 21886 | this.$get = valueFn(window); |
| 21887 | } |
| 21888 | |
| 21889 | /** |
| 21890 | * @name $$cookieReader |