mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
19 lines
245 B
CoffeeScript
19 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
|
|
}
|
|
})
|
|
|