mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
9 lines
344 B
CoffeeScript
9 lines
344 B
CoffeeScript
Darkswarm.factory "EnterpriseModal", ($modal, $rootScope)->
|
|
# Build a modal popup for an enterprise.
|
|
new class EnterpriseModal
|
|
open: (enterprise)->
|
|
scope = $rootScope.$new(true) # Spawn an isolate to contain the enterprise
|
|
|
|
scope.enterprise = enterprise
|
|
$modal.open(templateUrl: "enterprise_modal.html", scope: scope)
|