mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
20 lines
245 B
CoffeeScript
20 lines
245 B
CoffeeScript
|
require [
|
||
|
"libs/jquery.slides.min"
|
||
|
], () ->
|
||
|
$('#slides').slidesjs({
|
||
|
width: 940,
|
||
|
height: 100,
|
||
|
play: {
|
||
|
active: false,
|
||
|
auto: true,
|
||
|
interval: 5000
|
||
|
},
|
||
|
navigation: {
|
||
|
active: false
|
||
|
},
|
||
|
pagination: {
|
||
|
active: false
|
||
|
}
|
||
|
})
|
||
|
|