mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
8 lines
195 B
CoffeeScript
8 lines
195 B
CoffeeScript
angular.module('Darkswarm').directive "ofnInlineAlert", ->
|
|
restrict: 'A'
|
|
scope: true
|
|
link: (scope, elem, attrs) ->
|
|
scope.visible = true
|
|
scope.close = ->
|
|
scope.visible = false
|