Skip to content

Instantly share code, notes, and snippets.

@bjartwolf
Created October 5, 2012 08:34
Show Gist options
  • Save bjartwolf/3838769 to your computer and use it in GitHub Desktop.
Save bjartwolf/3838769 to your computer and use it in GitHub Desktop.
obsvar macro
macro obsvar {
case $name => {
var $name = ko.observable()
}
case $name = $param => {
var $name = ko.observable($param)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment