Files
openfoodnetwork/app/assets/javascripts/darkswarm/services/enterprise_modal.js.coffee
2014-10-06 22:59:06 +11:00

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)