Commit 75811083 authored by campaign's avatar campaign

修复dialog不能二次弹出的问题

parent e08f3cb0
...@@ -43,23 +43,6 @@ ...@@ -43,23 +43,6 @@
$w.find( "li[type='progress'][value='" + valPro + "']" ).addClass( "active" ); $w.find( "li[type='progress'][value='" + valPro + "']" ).addClass( "active" );
} ); } );
}, },
buttons: {
'ok': {
exec: function ( km, $w ) {
var href = $( '#kmui-link-Jhref' ).val().replace( /^\s+|\s+$/g, '' );
if ( href ) {
km.execCommand( 'link', {
'href': href,
'target': $( "#kmui-link-Jtarget:checked" ).length ? "_blank" : '_self',
'title': $( "#kmui-link-Jtitle" ).val().replace( /^\s+|\s+$/g, '' ),
'_href': href
} );
}
}
},
'cancel': {}
},
width: 200 width: 200
} ) } )
......
...@@ -126,7 +126,7 @@ utils.extend( KityMinder, function () { ...@@ -126,7 +126,7 @@ utils.extend( KityMinder, function () {
km.fire('selectionclear'); km.fire('selectionclear');
pro.initContent( km, $widget ); pro.initContent( km, $widget );
//在dialog上阻止键盘冒泡,导致跟编辑输入冲突的问题 //在dialog上阻止键盘冒泡,导致跟编辑输入冲突的问题
$widget.on('keydown keyup keypress mousedown mouseup',function(e){ $widget.on('keydown keyup keypress',function(e){
e.stopPropagation() e.stopPropagation()
}); });
if ( !pro._preventDefault ) { if ( !pro._preventDefault ) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment