Skip to content

Instantly share code, notes, and snippets.

@ro31337
Created October 1, 2014 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ro31337/9e5cdb33343b2d8ab635 to your computer and use it in GitHub Desktop.
Save ro31337/9e5cdb33343b2d8ab635 to your computer and use it in GitHub Desktop.
Knockout sample
<span data-bind="text: Name"></span>
var ViewModel = new function() {
var self = this;
self.Name = ko.observable("Sample User");
}
ko.applyBindings(ViewModel);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment