From 18beeab5e2f6bba7bca96b4bfa1ab23952f722d5 Mon Sep 17 00:00:00 2001 From: Thomas Butler Date: Fri, 13 Dec 2013 07:20:48 -0500 Subject: [PATCH] changed [illegal] variant type usage to a prefered static typing --- knockout/tests/knockout-tests.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/knockout/tests/knockout-tests.ts b/knockout/tests/knockout-tests.ts index fb3955241..6aeaae89f 100644 --- a/knockout/tests/knockout-tests.ts +++ b/knockout/tests/knockout-tests.ts @@ -56,13 +56,13 @@ function test_computed() { function MyViewModel1() { this.price = ko.observable(25.99); - this.formattedPrice = ko.computed({ + this.formattedPrice = ko.computed({ read: function () { return '$' + this.price().toFixed(2); }, write: function (value) { - value = parseFloat(value.replace(/[^\.\d]/g, "")); - this.price(isNaN(value) ? 0 : value); + var num = parseFloat(value.replace(/[^\.\d]/g, "")); + this.price(isNaN(num) ? 0 : num); }, owner: this });