mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
28 lines
486 B
CoffeeScript
28 lines
486 B
CoffeeScript
$(document).ready ->
|
|
opts =
|
|
lines: 11
|
|
length: 2
|
|
width: 3
|
|
radius: 9
|
|
corners: 1
|
|
rotate: 0
|
|
color: '#fff'
|
|
speed: 0.8
|
|
trail: 48
|
|
shadow: false
|
|
hwaccel: true
|
|
className: 'spinner'
|
|
zIndex: 2e9
|
|
top: 'auto'
|
|
left: 'auto'
|
|
|
|
target = document.getElementById("spinner")
|
|
|
|
$(document).ajaxStart ->
|
|
$("#progress").fadeIn()
|
|
spinner = new Spinner(opts).spin(target)
|
|
|
|
$(document).ajaxStop ->
|
|
$("#progress").fadeOut()
|
|
|