mirror of https://gitee.com/jeecg/jeecg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
588 B
30 lines
588 B
$(function(){
|
|
$('#backdroptrue').on('click',function(evt){
|
|
$('#modalbackdroptrue').modal({
|
|
backdrop:true
|
|
});
|
|
});
|
|
|
|
$('#backdropfalse').on('click',function(evt){
|
|
$('#modalbackdropfalse').modal({
|
|
backdrop:false
|
|
});
|
|
});
|
|
|
|
$('#keyboardtrue').on('click',function(evt){
|
|
$('#modalkeyboardtrue').modal({
|
|
keyboard:true
|
|
});
|
|
});
|
|
|
|
$('#keyboardfalse').on('click',function(evt){
|
|
$('#modalkeyboardfalse').modal({
|
|
keyboard:false
|
|
});
|
|
});
|
|
|
|
$('#amodaltoggle').on('click',function(evt){
|
|
$('#modaltoggle').modal('toggle');
|
|
});
|
|
|
|
}); |