Files
openfoodnetwork/app/assets/javascripts/darkswarm/services/enterprise_modal.js.coffee
2018-06-22 14:03:00 +10:00

10 lines
438 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.embedded_layout = window.location.search.indexOf("embedded_shopfront=true") != -1
scope.enterprise = enterprise
$modal.open(templateUrl: "enterprise_modal.html", scope: scope)