Skip to content

Instantly share code, notes, and snippets.

@marshallswain
Created July 5, 2015 21:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marshallswain/7e07a23971ab70f78a11 to your computer and use it in GitHub Desktop.
Save marshallswain/7e07a23971ab70f78a11 to your computer and use it in GitHub Desktop.
Live Binding Opt Out Helper
// Opt out of live binding by not using the property's compute.
// Usage: {{~ 'propName'}}
can.stache.registerHelper('~', function(prop, options) {
return options.context[prop];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment