2022-01-11 12:18:46 +00:00
|
|
|
//document ready
|
|
|
|
(function($){
|
2021-12-31 14:15:51 +00:00
|
|
|
$(function() {
|
2022-03-25 15:22:42 +00:00
|
|
|
$(document).on("click","a",function(event) {
|
2021-12-31 14:15:51 +00:00
|
|
|
var link = $(this).attr("href");
|
2022-03-26 02:36:19 +00:00
|
|
|
if ('string' != typeof(link)) {
|
|
|
|
return;
|
|
|
|
}
|
2022-01-03 23:47:48 +00:00
|
|
|
if(link.indexOf(":")>=0){
|
2022-03-16 14:29:04 +00:00
|
|
|
emitClickedEvent(link);
|
|
|
|
return false;
|
2022-01-02 01:37:43 +00:00
|
|
|
}
|
2022-03-16 14:29:04 +00:00
|
|
|
emitClickedEvent("");
|
2022-01-02 01:37:43 +00:00
|
|
|
|
2022-01-01 13:09:55 +00:00
|
|
|
var newLink;
|
2022-01-09 03:54:14 +00:00
|
|
|
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("#")) {
|
2022-01-09 03:54:14 +00:00
|
|
|
//the href may contain # fragment already.remove them before append the new #fragment
|
2022-01-11 12:18:46 +00:00
|
|
|
index = href.indexOf("#");
|
2022-01-09 03:54:14 +00:00
|
|
|
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("?");
|
2022-03-29 16:20:49 +00:00
|
|
|
|
|
|
|
if (link.indexOf("?gdanchor") > -1) {
|
|
|
|
newLink = "gdlookup://localhost/" + link;
|
2022-01-09 03:54:14 +00:00
|
|
|
}
|
2022-03-29 16:20:49 +00:00
|
|
|
else {
|
|
|
|
if (index > -1) {
|
|
|
|
newLink = href.substring(0, index) + "?word=" + link;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
newLink = href + "?word=" + link;
|
|
|
|
}
|
2022-01-09 03:54:14 +00:00
|
|
|
}
|
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();
|
|
|
|
}
|
2022-01-14 00:19:49 +00:00
|
|
|
|
2022-01-31 01:36:52 +00:00
|
|
|
function resizeIframe(obj) {
|
2022-03-28 13:19:14 +00:00
|
|
|
setInterval(function(){
|
2022-03-28 14:30:19 +00:00
|
|
|
//in some cases ,the website in iframe will load result after document has been loaded. the height will continue to change.
|
|
|
|
if(obj.contentWindow.document.documentElement.scrollHeight <1000)
|
|
|
|
{
|
|
|
|
obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
obj.style.height ='1000px'
|
|
|
|
obj.scrolling="yes";
|
|
|
|
}
|
2022-03-28 13:19:14 +00:00
|
|
|
},500);
|
2022-01-14 00:19:49 +00:00
|
|
|
}
|