mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-01 02:03:22 +00:00
14 lines
333 B
CoffeeScript
14 lines
333 B
CoffeeScript
Darkswarm.directive "submitCheckout", () ->
|
|
restrict: "A"
|
|
link: (scope, elm, attr)->
|
|
elm.bind 'click', (ev)->
|
|
ev.preventDefault()
|
|
|
|
names = ["details", "billing", "shipping", "payment"]
|
|
for name of names
|
|
if not scope[name].$valid
|
|
$scope.show name
|
|
# else
|
|
# scope.purchase(ev)
|
|
|