harmonize js files naming under unfold/
[myslice.git] / unfold / static / js / spin-presets.js
1 function spin_presets() { return {
2   lines: 13, // The number of lines to draw
3   length: 7, // The length of each line
4   width: 4, // The line thickness
5   radius: 10, // The radius of the inner circle
6   corners: 1, // Corner roundness (0..1)
7   rotate: 0, // The rotation offset
8   color: '#f00', // #rgb or #rrggbb
9   speed: 0.7, // Rounds per second
10   trail: 60, // Afterglow percentage
11   shadow: false, // Whether to render a shadow
12   hwaccel: true, // Whether to use hardware acceleration
13   className: 'spinner', // The CSS class to assign to the spinner
14   zIndex: 2e9, // The z-index (defaults to 2000000000)
15   top: 'auto', // Top position relative to parent in px
16   left: 'auto' // Left position relative to parent in px
17 }}