goldendict-ng/resources/gd-custom.js

55 lines
1.3 KiB
JavaScript
Raw Normal View History

2022-01-11 12:18:46 +00:00
//document ready
(function($){
2021-12-31 14:15:51 +00:00
$(function() {
$("a").click(function(event) {
var link = $(this).attr("href");
emitClickedEvent(link);
if(link.indexOf(":")>=0){
2022-01-02 01:37:43 +00:00
return;
}
2022-01-01 13:09:55 +00:00
var newLink;
var href = window.location.href;
2022-01-11 12:18:46 +00:00
var index=-1;
2022-01-01 13:09:55 +00:00
if (link.startsWith("#")) {
//the href may contain # fragment already.remove them before append the new #fragment
2022-01-11 12:18:46 +00:00
index = href.indexOf("#");
if(index>-1)
{
newLink = href.substring(0, index) + link;
}
else{
newLink= href+link;
}
2022-01-01 13:09:55 +00:00
} else {
2022-01-11 12:18:46 +00:00
index = href.indexOf("?");
if(index>-1)
{
newLink = href.substring(0, index) + "?word=" + link;
}
else{
newLink=href+"?word=" + link;
}
2021-12-31 14:15:51 +00:00
}
2022-01-01 13:09:55 +00:00
$(this).attr("href", newLink);
2021-12-31 14:15:51 +00:00
});
2022-01-11 12:18:46 +00:00
});
})($_$);
2021-12-31 14:15:51 +00:00
2022-01-03 04:00:50 +00:00
function playSound(sound) {
2022-01-11 12:18:46 +00:00
var a = new Audio(sound);
a.play();
}
function emitClickedEvent(link){
try{
articleview.linkClickedInHtml(link);
}catch(error)
{
console.error(error);
}
}