You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
2.2 KiB

6 years ago
(function ($, Drupal) {
6 years ago
Drupal.behaviors.footnote_popups = {
attach: function attach(context, settings) {
$.each($("li.footnote"), function(index, value) {
//find the footnotes at the bottom and extract the text
6 years ago
var _footnoteText_ = $(value).text();
console.log(_footnoteText_);
//find the href of the related anchor from the id of this
var _id_ = $('.footnote-link', this).attr("id");
console.log(_id_);
//use the id to fing the links href and insert the text from the 1st var
6 years ago
$('a[href$="' + _id_ + '"]').attr('data-toggle', 'tooltip').attr('data-original-title', _footnoteText_).attr('title', '');
});
}
};
6 years ago
Drupal.behaviors.author_tasks_menu = {
attach: function attach(context, settings) {
$.each($(".menu__author-tasks .menu-item a "), function(index, value) {
var titleText = $(this).attr("title");
var linkInfo = '<span class="link-info">' +titleText+ '</span>';
console.log(titleText);
$(this).append(linkInfo);
});
}
};
6 years ago
Drupal.behaviors.stickyTOC = {
attach: function attach(context, settings) {
var container_height = $('.node__main-content').css("height");
//console.log(height);
//$('.toc-container .toc-sticky-wrapper').css('height', container_height);
6 years ago
//$( ".toc-block--wide" ).wrap( "<div class='new' />");
}
};
6 years ago
Drupal.behaviors.slickSliderInit = {
attach: function attach(context, settings) {
$('.lp-slideshow').slick({
fade: true,
cssEase: 'linear',
pauseOnHover: false,
autoplay: true,
autoplaySpeed: 5000
});
}
};
//<a class="see-footnote" id="footnoterefviii_3w9ys6f" href="#footnoteviii_3w9ys6f">viii</a>
//<li class="footnote">
//<a href="#footnoterefviii_3w9ys6f" id="footnoteviii_3w9ys6f" class="footnote-link">
//viii
//</a> Emily Climbs, p. 173.</li>
6 years ago
})(jQuery, Drupal);