* @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
()
| 14671 | </example> |
| 14672 | */ |
| 14673 | function $WindowProvider(){ |
| 14674 | this.$get = valueFn(window); |
| 14675 | } |
| 14676 | |
| 14677 | /* global currencyFilter: true, |
| 14678 | dateFilter: true, |