Skip to content

Instantly share code, notes, and snippets.

@guilsa

guilsa/app.js Secret

Last active September 15, 2016 16:57
Show Gist options
  • Save guilsa/7a5d7f7e366cb5dbc7dd529d634efc4f to your computer and use it in GitHub Desktop.
Save guilsa/7a5d7f7e366cb5dbc7dd529d634efc4f to your computer and use it in GitHub Desktop.
Adding KnockoutKS define block for RequireJS
define(['knockout'], function (ko) {
return function app() {
this.firstName = ko.observable('Elaine');
this.capitalizeFirstName = function() {
var currentVal = this.firstName();
return this.firstName(currentVal.toUpperCase());
};
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment