Skip to content

Instantly share code, notes, and snippets.

@rikukissa
Created February 25, 2014 12:10
Show Gist options
  • Save rikukissa/9207710 to your computer and use it in GitHub Desktop.
Save rikukissa/9207710 to your computer and use it in GitHub Desktop.
form(data-bind='submit: loadFoobar')
button(type='submit', data-bind='css: { loading: loadFoobar.loading }')
class ViewModel
constructor: ->
@loadFoobar.loading = ko.observable false
loadFoobar: ->
@loadFoobar.loading true
makeAjaxRequest =>
@loadFoobar.loading false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment