- [bug#60043,done,0.2h] remove js.

This commit is contained in:
liumengyi
2025-03-04 16:39:28 +08:00
committed by 田淑杰
parent 1a3668f802
commit a43eee4b0b
-19
View File
@@ -1,19 +0,0 @@
$(document).off('click', '.tipBtn').on('click', '.tipBtn', function(event)
{
const link = $(this).attr('href');
if(typeof link == 'undefined') return true;
event.preventDefault();
$.get(link, function(response)
{
try
{
response = JSON.parse(response);
loadPage(link);
}
catch(e)
{
window.open(link);
}
});
})