切换导航条
此项目
正在载入...
登录
何书鹏
/
recruit
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
Ivan
6 years ago
提交者
Gitee
6 years ago
提交
f03430ccb7517b6ac6b8f82dcd15ee9248c62413
1 个父辈
df68b9d0
更新 require-table.js
自定义按钮的confirm不生效bug修改
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
1 行增加
和
1 行删除
public/assets/js/require-table.js
public/assets/js/require-table.js
查看文件 @
f03430c
...
...
@@ -642,7 +642,7 @@ define(['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table
text
=
typeof
j
.
text
===
'function'
?
j
.
text
.
call
(
table
,
row
,
j
)
:
j
.
text
?
j
.
text
:
''
;
title
=
typeof
j
.
title
===
'function'
?
j
.
title
.
call
(
table
,
row
,
j
)
:
j
.
title
?
j
.
title
:
text
;
refresh
=
j
.
refresh
?
'data-refresh="'
+
j
.
refresh
+
'"'
:
''
;
confirm
=
typeof
j
.
confirm
===
'function'
?
j
.
confirm
.
call
(
table
,
row
,
j
)
:
(
typeof
j
.
confirm
!==
'undefined'
?
j
.
disable
:
false
);
confirm
=
typeof
j
.
confirm
===
'function'
?
j
.
confirm
.
call
(
table
,
row
,
j
)
:
(
typeof
j
.
confirm
!==
'undefined'
?
j
.
confirm
:
false
);
confirm
=
confirm
?
'data-confirm="'
+
confirm
+
'"'
:
''
;
extend
=
j
.
extend
?
j
.
extend
:
''
;
disable
=
typeof
j
.
disable
===
'function'
?
j
.
disable
.
call
(
table
,
row
,
j
)
:
(
typeof
j
.
disable
!==
'undefined'
?
j
.
disable
:
false
);
...
...
请
注册
或
登录
后发表评论