提交 6a8cb3b3 编写于 作者: C campaign

添加了处理controlElement的问题

上级 9e677638
......@@ -309,11 +309,19 @@
if ( options.fullscreen && me.ui ) {
me.ui.setFullScreen( true );
}
//解决ff下点击图片会复制问题
//ff下的table不能编辑
if(browser.gecko){
try {
me.document.execCommand( '2D-position', false, false );
} catch ( e ) {}
try {
me.document.execCommand( 'enableInlineTableEditing', false, options.tableNativeEditInFF );
} catch ( e ) {}
try {
me.document.execCommand( 'enableObjectResizing', false, false );
me.document.execCommand( 'enableInlineTableEditing', false,options.tableNativeEditInFF );
} catch ( e ) {
domUtils.on(me.body,browser.ie ? 'resizestart' : 'resize', function( evt ) {
domUtils.preventDefault(evt)
});
}
me.isReady = 1;
me.fireEvent( 'ready' );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册