From 285b469ecc22c50b5559c3f2dad4e12c3a45241a Mon Sep 17 00:00:00 2001 From: rdrew Date: Mon, 29 Oct 2018 10:23:14 -0300 Subject: [PATCH] fixed the footnote popups --- js/js.js | 24 +++++++++++++++--------- src/js/js.js | 16 ++++++++++++++-- 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/js/js.js b/js/js.js index 845bd3e..fe764ea 100644 --- a/js/js.js +++ b/js/js.js @@ -2,9 +2,14 @@ Drupal.behaviors.footnote_popups = { attach: function attach(context, settings) { - $.each($("li[id^='footnote']"), function(index, value) { + $.each($("li.footnote"), function(index, value) { + //find the footnotes at the bottom and extract the text var _footnoteText_ = $(value).text(); - var _id_ = $(this).attr("id"); + 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 $('a[href$="' + _id_ + '"]').attr('data-toggle', 'tooltip').attr('data-original-title', _footnoteText_).attr('title', ''); }); } @@ -34,15 +39,16 @@ Drupal.behaviors.slickSliderInit = { attach: function attach(context, settings) { - $('.lp-slideshow').slick({ - fade: true, - speed: 1000, - autoplay: true, - autoplaySpeed: 8000, - - }); + $('.lp-slideshow').slick(); } }; +//viii + + +//
  • + // + //viii + // Emily Climbs, p. 173.
  • diff --git a/src/js/js.js b/src/js/js.js index e362175..fe764ea 100644 --- a/src/js/js.js +++ b/src/js/js.js @@ -2,9 +2,14 @@ Drupal.behaviors.footnote_popups = { attach: function attach(context, settings) { - $.each($("li[id^='footnote']"), function(index, value) { + $.each($("li.footnote"), function(index, value) { + //find the footnotes at the bottom and extract the text var _footnoteText_ = $(value).text(); - var _id_ = $(this).attr("id"); + 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 $('a[href$="' + _id_ + '"]').attr('data-toggle', 'tooltip').attr('data-original-title', _footnoteText_).attr('title', ''); }); } @@ -37,6 +42,13 @@ $('.lp-slideshow').slick(); } }; +//viii + + +//
  • + // + //viii + // Emily Climbs, p. 173.