Browse Source

anothe tooltip fix

dependabot/npm_and_yarn/acorn-5.7.4
rdrew 6 years ago
parent
commit
66a04a56b8
  1. 19
      js/js.js
  2. 19
      src/js/js.js

19
js/js.js

@ -2,7 +2,8 @@
Drupal.behaviors.footnote_popups = { Drupal.behaviors.footnote_popups = {
attach: function attach(context, settings) { attach: function attach(context, settings) {
$.each($("ul.footnotes a"), function(index, value) { //target he footnotes list
$.each($(".notes ul.footnotes a"), function(index, value) {
//find the footnotes at the bottom and extract the text //find the footnotes at the bottom and extract the text
var _footnoteText_ = $(this).siblings(".endnote-text").text(); var _footnoteText_ = $(this).siblings(".endnote-text").text();
console.log(_footnoteText_); console.log(_footnoteText_);
@ -12,6 +13,22 @@
//use the id to fing the links href and insert the text from the 1st var //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', ''); $('a[href$="' + _id_ + '"]').attr('data-toggle', 'tooltip').attr('data-original-title', _footnoteText_).attr('title', '');
}); });
$.each($(".works_cited ul.footnotes a"), function(index, value) {
//find the footnotes at the bottom and extract the text
var _footnoteText_ = $(this).siblings(".bibcite-citation").text();
console.log(_footnoteText_);
//find the href of the related anchor from the id of this
var _id_ = $(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', '');
});
//$.each($("li.footnote"), function(index, value) { //$.each($("li.footnote"), function(index, value) {
////find the footnotes at the bottom and extract the text ////find the footnotes at the bottom and extract the text
//var _footnoteText_ = $(value).text(); //var _footnoteText_ = $(value).text();

19
src/js/js.js

@ -2,7 +2,8 @@
Drupal.behaviors.footnote_popups = { Drupal.behaviors.footnote_popups = {
attach: function attach(context, settings) { attach: function attach(context, settings) {
$.each($("ul.footnotes a"), function(index, value) { //target he footnotes list
$.each($(".notes ul.footnotes a"), function(index, value) {
//find the footnotes at the bottom and extract the text //find the footnotes at the bottom and extract the text
var _footnoteText_ = $(this).siblings(".endnote-text").text(); var _footnoteText_ = $(this).siblings(".endnote-text").text();
console.log(_footnoteText_); console.log(_footnoteText_);
@ -12,6 +13,22 @@
//use the id to fing the links href and insert the text from the 1st var //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', ''); $('a[href$="' + _id_ + '"]').attr('data-toggle', 'tooltip').attr('data-original-title', _footnoteText_).attr('title', '');
}); });
$.each($(".works_cited ul.footnotes a"), function(index, value) {
//find the footnotes at the bottom and extract the text
var _footnoteText_ = $(this).siblings(".bibcite-citation").text();
console.log(_footnoteText_);
//find the href of the related anchor from the id of this
var _id_ = $(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', '');
});
//$.each($("li.footnote"), function(index, value) { //$.each($("li.footnote"), function(index, value) {
////find the footnotes at the bottom and extract the text ////find the footnotes at the bottom and extract the text
//var _footnoteText_ = $(value).text(); //var _footnoteText_ = $(value).text();

Loading…
Cancel
Save