* Modify system block style.

This commit is contained in:
caoyanyi
2023-02-01 14:22:47 +08:00
parent a56ebbab57
commit 9f7d184aaa
4 changed files with 13 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
$(function()
{
$(document).on('click', '.setting-box', function()
{
location.href = $(this).data('link');
}).on('click', '.setting-box a', function(e)
{
e.stopPropagation();
});
});