X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=roojs-ui-debug.js;h=3f925227b1e98e49e7dbd6e4ddf282d4c0ff5e62;hp=d9e4f2e85668e2f3619f8bd8ae2e2d809b84c7ec;hb=5cb025da6d12a9ec7da57c2d616452b3d255bdbe;hpb=ba2c4ec9e232986544417432b0530f8607779c19 diff --git a/roojs-ui-debug.js b/roojs-ui-debug.js index d9e4f2e856..3f925227b1 100644 --- a/roojs-ui-debug.js +++ b/roojs-ui-debug.js @@ -23676,7 +23676,7 @@ Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, { 'data-display' : this.caption_display, style : { 'text-align': 'left', - 'margin-top' : '16px', + 'font-size' : '16px', 'line-height' : '24px', display : this.caption_display @@ -23684,11 +23684,22 @@ Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, { cls : this.cls.length > 0 ? (this.cls + '-thumbnail' ) : '', cn : [ { - // we can not rely on yahoo syndication to use CSS elements - so have to use '' to encase stuff. - tag : 'i', - contenteditable : true, - html : captionhtml + tag: 'div', + style : { + 'margin-top' : '16px' + }, + align: 'left', + cn : [ + { + // we can not rely on yahoo syndication to use CSS elements - so have to use '' to encase stuff. + tag : 'i', + contenteditable : true, + html : captionhtml + } + + ] } + ] } @@ -25540,7 +25551,7 @@ Roo.extend(Roo.HtmlEditorCore, Roo.Component, { var cd = (e.browserEvent.clipboardData || window.clipboardData); // check what type of paste - if it's an image, then handle it differently. - if (cd.files.length > 0) { + if (cd.files && cd.files.length > 0) { // pasting images? var urlAPI = (window.createObjectURL && window) || (window.URL && URL.revokeObjectURL && URL) || @@ -25550,10 +25561,15 @@ Roo.extend(Roo.HtmlEditorCore, Roo.Component, { this.insertAtCursor(''); return false; } - + if (cd.types.indexOf('text/html') < 0 ) { + return false; + } + var images = []; var html = cd.getData('text/html'); // clipboard event - var parser = new Roo.rtf.Parser(cd.getData('text/rtf')); - var images = parser.doc ? parser.doc.getElementsByType('pict') : []; + if (cd.types.indexOf('text/rtf') > -1) { + var parser = new Roo.rtf.Parser(cd.getData('text/rtf')); + images = parser.doc ? parser.doc.getElementsByType('pict') : []; + } Roo.log(images); //Roo.log(imgs); // fixme..