|
@@ -179,7 +179,6 @@ var browser = UE.browser = function(){
|
|
|
*/
|
|
|
browser.ie7Compat = ( ( version == 7 && !document.documentMode )
|
|
|
|| document.documentMode == 7 );
|
|
|
-
|
|
|
/**
|
|
|
* @property { boolean } ie6Compat 检测浏览器模式是否为 IE6 模式 或者怪异模式
|
|
|
* @warning 如果浏览器不是IE, 则该值为undefined
|
|
@@ -12673,7 +12672,7 @@ UE.plugins['paragraph'] = function() {
|
|
|
} );
|
|
|
}
|
|
|
tmpRange.setEndAfter( tmpNode );
|
|
|
-
|
|
|
+
|
|
|
para = range.document.createElement( style );
|
|
|
if(attrs){
|
|
|
domUtils.setAttributes(para,attrs);
|
|
@@ -12685,7 +12684,7 @@ UE.plugins['paragraph'] = function() {
|
|
|
//需要内容占位
|
|
|
if(domUtils.isEmptyNode(para)){
|
|
|
domUtils.fillChar(range.document,para);
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
|
|
|
tmpRange.insertNode( para );
|
|
@@ -12809,7 +12808,7 @@ UE.plugins['paragraph'] = function() {
|
|
|
|
|
|
},
|
|
|
doDirectionality = function(range,editor,forward){
|
|
|
-
|
|
|
+
|
|
|
var bookmark,
|
|
|
filterFn = function( node ) {
|
|
|
return node.nodeType == 1 ? !domUtils.isBookmarkNode(node) : !domUtils.isWhitespace(node);
|
|
@@ -20027,6 +20026,14 @@ UE.plugins['table'] = function () {
|
|
|
|
|
|
var caption = domUtils.findParentByTagName(me.selection.getStart(), 'caption', true),
|
|
|
range = me.selection.getRange();
|
|
|
+
|
|
|
+ var child = range.startContainer;
|
|
|
+ if (child != null) {
|
|
|
+ if (child.tagName == "VIDEO") {
|
|
|
+ domUtils.remove(child);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
if (range.collapsed && caption && isEmptyBlock(caption)) {
|
|
|
me.fireEvent('saveScene');
|
|
|
var table = caption.parentNode;
|
|
@@ -22731,7 +22738,7 @@ UE.plugins['formatmatch'] = function(){
|
|
|
});
|
|
|
|
|
|
function addList(type,evt){
|
|
|
-
|
|
|
+
|
|
|
if(browser.webkit){
|
|
|
var target = evt.target.tagName == 'IMG' ? evt.target : null;
|
|
|
}
|
|
@@ -22797,7 +22804,7 @@ UE.plugins['formatmatch'] = function(){
|
|
|
|
|
|
me.commands['formatmatch'] = {
|
|
|
execCommand : function( cmdName ) {
|
|
|
-
|
|
|
+
|
|
|
if(flag){
|
|
|
flag = 0;
|
|
|
list = [];
|
|
@@ -22806,7 +22813,7 @@ UE.plugins['formatmatch'] = function(){
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
var range = me.selection.getRange();
|
|
|
img = range.getClosedNode();
|
|
|
if(!img || img.tagName != 'IMG'){
|
|
@@ -25245,7 +25252,7 @@ UE.ui = baidu.editor.ui = {};
|
|
|
domUtils = baidu.editor.dom.domUtils,
|
|
|
UIBase = baidu.editor.ui.UIBase,
|
|
|
uiUtils = baidu.editor.ui.uiUtils;
|
|
|
-
|
|
|
+
|
|
|
var Mask = baidu.editor.ui.Mask = function (options){
|
|
|
this.initOptions(options);
|
|
|
this.initUIBase();
|
|
@@ -25541,7 +25548,7 @@ UE.ui = baidu.editor.ui = {};
|
|
|
}
|
|
|
};
|
|
|
utils.inherits(Popup, UIBase);
|
|
|
-
|
|
|
+
|
|
|
domUtils.on( document, 'mousedown', function ( evt ) {
|
|
|
var el = evt.target || evt.srcElement;
|
|
|
closeAllPopup( evt,el );
|
|
@@ -25637,7 +25644,7 @@ UE.ui = baidu.editor.ui = {};
|
|
|
var utils = baidu.editor.utils,
|
|
|
uiUtils = baidu.editor.ui.uiUtils,
|
|
|
UIBase = baidu.editor.ui.UIBase;
|
|
|
-
|
|
|
+
|
|
|
var TablePicker = baidu.editor.ui.TablePicker = function (options){
|
|
|
this.initOptions(options);
|
|
|
this.initTablePicker();
|
|
@@ -25721,7 +25728,7 @@ UE.ui = baidu.editor.ui = {};
|
|
|
var browser = baidu.editor.browser,
|
|
|
domUtils = baidu.editor.dom.domUtils,
|
|
|
uiUtils = baidu.editor.ui.uiUtils;
|
|
|
-
|
|
|
+
|
|
|
var TPL_STATEFUL = 'onmousedown="$$.Stateful_onMouseDown(event, this);"' +
|
|
|
' onmouseup="$$.Stateful_onMouseUp(event, this);"' +
|
|
|
( browser.ie ? (
|
|
@@ -25730,7 +25737,7 @@ UE.ui = baidu.editor.ui = {};
|
|
|
: (
|
|
|
' onmouseover="$$.Stateful_onMouseOver(event, this);"' +
|
|
|
' onmouseout="$$.Stateful_onMouseOut(event, this);"' ));
|
|
|
-
|
|
|
+
|
|
|
baidu.editor.ui.Stateful = {
|
|
|
alwalysHoverable: false,
|
|
|
target:null,//目标元素和this指向dom不一样
|
|
@@ -27355,7 +27362,7 @@ UE.ui = baidu.editor.ui = {};
|
|
|
setValue : function(value){
|
|
|
this._value = value;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
};
|
|
|
utils.inherits(MenuButton, SplitButton);
|
|
|
})();
|
|
@@ -28985,7 +28992,7 @@ UE.ui = baidu.editor.ui = {};
|
|
|
// }
|
|
|
// });
|
|
|
|
|
|
-
|
|
|
+
|
|
|
for(var key in UE._customizeUI){
|
|
|
var obj = UE._customizeUI[key]
|
|
|
var itemUI,index;
|