mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
10 lines
318 B
CoffeeScript
10 lines
318 B
CoffeeScript
angular.module("admin.utils").directive "datepicker", ->
|
|
require: "ngModel"
|
|
link: (scope, element, attrs, ngModel) ->
|
|
element.datepicker
|
|
dateFormat: "yy-mm-dd"
|
|
onSelect: (dateText, inst) ->
|
|
scope.$apply (scope) ->
|
|
# Fires ngModel.$parsers
|
|
ngModel.$setViewValue dateText
|