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