From 101aabccdb82914ed9403e0e7b26ca6988cb3d5c Mon Sep 17 00:00:00 2001 From: RainerAtSpirit Date: Tue, 17 Sep 2013 20:05:27 +0200 Subject: [PATCH] fixed typo --- app/masterDetail/wizard2/step.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/masterDetail/wizard2/step.js b/app/masterDetail/wizard2/step.js index 4c734b1..6e1b28a 100644 --- a/app/masterDetail/wizard2/step.js +++ b/app/masterDetail/wizard2/step.js @@ -1,8 +1,8 @@ define(['knockout'], function( ko ) { var Property = function( id, val ) { - this.id = id, - this.val = ko.observable(val); + this.id = id; + this.val = ko.observable(val); }; var ctor = function( options ) {