View Single Post
Old 01-29-2013, 02:03 AM   PM User | #4
rnd me
Senior Coder

 
rnd me's Avatar
 
Join Date: Jun 2007
Location: Urbana
Posts: 3,469
Thanks: 9
Thanked 466 Times in 450 Posts
rnd me is a jewel in the roughrnd me is a jewel in the roughrnd me is a jewel in the rough
@ is a syntax error...

well, you also re-define the function toggleIsFollowing() as false, probably not what you want to do.


if that's not it, it sound like the this/that thing we usually see in dom events.
why not just close it instead of going through knockout?


Code:
 function AppViewModel() {
       var toggled = true;
        this.toggleIsFollowing = function () {
           toggled  = !toggled 
        };

        this.isFollowing = @Model.IsFollowing.ToString().ToLower()
        this.followButtonText = ko.computed(function () {
            return toggled  ? "Follow" : "Unfollow";
        });
    }
__________________
my site (updated 5/13)
STATS (2013/5) HTML5:90.2% MOB:14% IE7:0.5% IE8:8.6% IE9:9.8% IE10:10%
rnd me is offline   Reply With Quote