Merge branch 'master' into switch-0.9.5

This commit is contained in:
vvakame
2013-12-08 00:20:07 +09:00
16 changed files with 258 additions and 94 deletions
+13
View File
@@ -568,4 +568,17 @@ function test_misc() {
ko.utils.domNodeDisposal.addDisposeCallback(element, function () {
$(element).datepicker("destroy");
});
this.observableFactory = function(): KnockoutObservable<number>{
if (true) {
return ko.computed({
read:function(){
return 3;
}
});
} else {
return ko.observable(3);
}
}
}