* @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
()
| 21051 | </example> |
| 21052 | */ |
| 21053 | function $WindowProvider() { |
| 21054 | this.$get = valueFn(window); |
| 21055 | } |
| 21056 | |
| 21057 | /** |
| 21058 | * @name $$cookieReader |