goldendict-ng/scripts/gd-custom.js
Xiao YiFang 6e74c27ea2 opt:iframe height auto resize
some website ,the page content is lazy load, the iframe-resizer seems has trouble with them.
2022-09-04 19:03:27 +08:00

62 lines
1.8 KiB
JavaScript

//document ready
(function ($) {
$(function () {
$(document).on("click", "a", function (event) {
var link = $(this).attr("href");
if ('string' != typeof (link)) {
return;
}
if (link.indexOf("javascript:") >= 0) {
return;
}
if (link.indexOf(":") >= 0) {
emitClickedEvent(link);
return false;
}
emitClickedEvent("");
var newLink;
var href = window.location.href;
var index = -1;
if (link.startsWith("#")) {
//the href may contain # fragment already.remove them before append the new #fragment
index = href.indexOf("#");
if (index > -1) {
newLink = href.substring(0, index) + link;
}
else {
newLink = href + link;
}
} else {
index = href.indexOf("?");
if (link.indexOf("?gdanchor") > -1) {
newLink = "gdlookup://localhost/" + link;
}
else {
if (index > -1) {
newLink = href.substring(0, index) + "?word=" + link;
}
else {
newLink = href + "?word=" + link;
}
}
}
$(this).attr("href", newLink);
});
//monitor iframe height.
$('iframe').iFrameResize({ checkOrigin:false,maxHeight :800,scrolling:true,warningTimeout:0,minHeight :250,log:true,autoResize:false});
});
})($_$);
function playSound(sound) {
var a = new Audio(sound);
a.play();
}