mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
414 B
CoffeeScript
12 lines
414 B
CoffeeScript
angular.module("admin.utils").factory "DialogDefaults", ($window) ->
|
|
show: { effect: "fade", duration: 400 }
|
|
hide: { effect: "fade", duration: 300 }
|
|
autoOpen: false
|
|
resizable: false
|
|
width: $window.innerWidth * 0.4
|
|
position: ['middle', 100]
|
|
modal: true
|
|
open: (event, ui) ->
|
|
$('.ui-widget-overlay').bind 'click', ->
|
|
$(this).siblings('.ui-dialog').find('.ui-dialog-content').dialog('close')
|