(property, preprocess)
| 5450 | |
| 5451 | |
| 5452 | function locationGetterSetter(property, preprocess) { |
| 5453 | return function(value) { |
| 5454 | if (isUndefined(value)) |
| 5455 | return this[property]; |
| 5456 | |
| 5457 | this[property] = preprocess(value); |
| 5458 | this.$$compose(); |
| 5459 | |
| 5460 | return this; |
| 5461 | }; |
| 5462 | } |
| 5463 | |
| 5464 | |
| 5465 | /** |