mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
13 lines
350 B
CoffeeScript
13 lines
350 B
CoffeeScript
$(document).ready ->
|
|
$('.tab').click ->
|
|
btn_href = $('.card-action a').attr('href').split('#')[0];
|
|
tab_anchor = $(this).find('a').attr('href')
|
|
$('.card-action a').attr('href', btn_href + tab_anchor);
|
|
if location.hash?
|
|
setTimeout ( ->
|
|
window.scrollTo(0, 0);
|
|
), 1
|
|
|
|
$('.share').click ->
|
|
$('#share-modal').openModal()
|