(property, preprocess)
| 9621 | |
| 9622 | |
| 9623 | function locationGetterSetter(property, preprocess) { |
| 9624 | return function(value) { |
| 9625 | if (isUndefined(value)) |
| 9626 | return this[property]; |
| 9627 | |
| 9628 | this[property] = preprocess(value); |
| 9629 | this.$$compose(); |
| 9630 | |
| 9631 | return this; |
| 9632 | }; |
| 9633 | } |
| 9634 | |
| 9635 | |
| 9636 | /** |