Skip to content

Instantly share code, notes, and snippets.

@thbar
Created May 15, 2012 20:31
Show Gist options
  • Save thbar/2704895 to your computer and use it in GitHub Desktop.
Save thbar/2704895 to your computer and use it in GitHub Desktop.
Making eternicode datepicker works with KnockOut "with: model"
# https://github.com/eternicode/bootstrap-datepicker/tree/master/js
$('form').on 'focus', '.datepicker', ->
$(@).datepicker({format: 'yyyy-mm-dd'})
$(@).datepicker('show')
$('form').on 'blur', '.datepicker', ->
$(@).datepicker('hide')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment