All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aya-html.show-tooltip.js Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2020-2023 Tesla (Yinsen) Zhang.
 * Use of this source code is governed by the MIT license that can be found in the LICENSE.md file.
 */

let links = document.getElementsByClassName('aya-tooltip');
for (let i = 0; i < links.length; i++) {
  let link = links[i];
  if (!link.hasAttribute("data-tooltip-text")) continue;
  link.onmouseover = showTooltip(true);
  link.onmouseout = showTooltip(false);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy