mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
7 lines
279 B
CoffeeScript
7 lines
279 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
|
|
$modal.open(templateUrl: "map_modal.html", scope: scope)
|