* @ngdoc service * @name $window * * @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 angular we always refer to it through the * `$window` service, so it ma
()
| 18923 | </example> |
| 18924 | */ |
| 18925 | function $WindowProvider() { |
| 18926 | this.$get = valueFn(window); |
| 18927 | } |
| 18928 | |
| 18929 | /** |
| 18930 | * @name $$cookieReader |