mirror of https://github.com/layui/layui
优化 code 的 `copy` 属性开启时, 对 `tools` 属性的初始化配置
parent
fc28a94cab
commit
b88672c762
|
@ -186,9 +186,16 @@ layui.define(['lay', 'util', 'element', 'form'], function(exports){
|
|||
});
|
||||
|
||||
// copy
|
||||
if(options.copy && layui.type(options.tools) === 'array'){
|
||||
if(options.copy){
|
||||
if(layui.type(options.tools) === 'array'){
|
||||
// 若 copy 未存在于 tools 中,则追加到最前
|
||||
if(options.tools.indexOf('copy') === -1){
|
||||
options.tools.unshift('copy');
|
||||
}
|
||||
} else {
|
||||
options.tools = ['copy'];
|
||||
}
|
||||
}
|
||||
|
||||
// 工具栏事件
|
||||
elemToolbar.on('click', '>i', function(){
|
||||
|
|
Loading…
Reference in New Issue