mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
13 lines
469 B
CoffeeScript
13 lines
469 B
CoffeeScript
Darkswarm.factory "MapModal", ($modal, $rootScope)->
|
|
new class MapModal
|
|
open: (enterprise)->
|
|
scope = $rootScope.$new(true) # Spawn an isolate to contain the enterprise
|
|
|
|
scope.enterprise = enterprise
|
|
if enterprise.is_distributor
|
|
scope.hub = enterprise
|
|
$modal.open(templateUrl: "hub_modal.html", scope: scope)
|
|
else
|
|
scope.producer = enterprise
|
|
$modal.open(templateUrl: "map_modal_producer.html", scope: scope)
|