mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
17 lines
317 B
CoffeeScript
17 lines
317 B
CoffeeScript
|
require [
|
||
|
"libs/jquery.storage"
|
||
|
"libs/bootstrap/bootstrap2full"
|
||
|
], ()->
|
||
|
$('tr.clickable').click (event)->
|
||
|
window.location = $(event.target).closest('tr').attr("href")
|
||
|
|
||
|
$('.dropdown-toggle').dropdown()
|
||
|
# $('.tabs').tab('show')
|
||
|
|
||
|
$(".carousel").carousel()
|
||
|
|
||
|
$("#scribtexModal").modal()
|
||
|
|
||
|
return
|
||
|
|