14 lines
189 B
CoffeeScript
14 lines
189 B
CoffeeScript
#= require jquery
|
|
#= require fathom
|
|
|
|
$(->
|
|
fathom = new Fathom('#slides', displayMode: 'multi', scrollLength: 250)
|
|
|
|
setTimeout(
|
|
->
|
|
$(window).trigger('resize')
|
|
, 250
|
|
)
|
|
)
|
|
|