fix: 修复数学公式设置被锁死无法切换的问题
- 点击 CDN 输入框时会触发 label 的点击事件,导致 radio 被选中 - 添加 JS 事件处理,阻止输入框点击事件冒泡到 label
This commit is contained in:
@@ -5450,6 +5450,11 @@ window.pjaxLoaded = function(){
|
||||
|
||||
});
|
||||
|
||||
// 防止数学公式 CDN 输入框点击时触发 radio 选中
|
||||
$(document).on("click", ".form-table-mathrender input[type='text']", function(e){
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
$(function () {
|
||||
|
||||
$(document).headIndex({
|
||||
|
||||
Reference in New Issue
Block a user