notebook/app/assets/javascripts/content.js.coffee
2016-10-25 16:37:35 -07:00

18 lines
510 B
CoffeeScript

$(document).ready ->
$('.tab').click ->
if $('.card-action a').attr('href')
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
$('.new-attribute-field-link').click (e) ->
e.preventDefault()
$("#attribute-field-modal").openModal()
$('.share').click ->
$('#share-modal').openModal()