You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doing var foo = Ko.Observable(); will result in javascript var var foo = ko.observable(); thansk to the Inline attribute. But that wont work for the second method becasue it need to pass the argument variable. ommiting the Inline argument and calling var ob2 = Ko.Observable("foo"); will output var ob2 = ko.observable(String, "foo");
This will fail becasue ko.observable wants ko.observable("foo");
Can I somehow omit generic arguments?
The text was updated successfully, but these errors were encountered:
Hi.
I finally got time to get wootzjs to build. Very cool.
I'm trying to write a export class for KnockoutJS. This my my code sofar
doing var foo = Ko.Observable(); will result in javascript var var foo = ko.observable(); thansk to the Inline attribute. But that wont work for the second method becasue it need to pass the argument variable. ommiting the Inline argument and calling var ob2 = Ko.Observable("foo"); will output var ob2 = ko.observable(String, "foo");
This will fail becasue ko.observable wants ko.observable("foo");
Can I somehow omit generic arguments?
The text was updated successfully, but these errors were encountered: