mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 15:19:57 +09:00
#19473993 XEED 파일 첨부창을 DOM상에서 문서의 제일 끝으로 이동
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8029 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c13c178f6d
commit
58444b05a4
1 changed files with 7 additions and 1 deletions
|
|
@ -1442,6 +1442,9 @@ LineBreak = xe.createPlugin('LineBreak', {
|
||||||
|
|
||||||
sel.select();
|
sel.select();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* twice enter function is currently disabled
|
||||||
|
*
|
||||||
// <br> timer
|
// <br> timer
|
||||||
if (!this._in_br) {
|
if (!this._in_br) {
|
||||||
$br.after( $a = $('<a>|</a>') );
|
$br.after( $a = $('<a>|</a>') );
|
||||||
|
|
@ -1475,7 +1478,6 @@ LineBreak = xe.createPlugin('LineBreak', {
|
||||||
if (!$block.html()) $block.html(invisibleCh);
|
if (!$block.html()) $block.html(invisibleCh);
|
||||||
$p.prepend(d.createTextNode(invisibleCh));
|
$p.prepend(d.createTextNode(invisibleCh));
|
||||||
|
|
||||||
//sel.selectNode($p[0].firstChild);
|
|
||||||
sel.setStart($p[0].firstChild, 0);
|
sel.setStart($p[0].firstChild, 0);
|
||||||
sel.setEnd($p[0].firstChild, 1);
|
sel.setEnd($p[0].firstChild, 1);
|
||||||
sel.collapseToEnd();
|
sel.collapseToEnd();
|
||||||
|
|
@ -1484,6 +1486,7 @@ LineBreak = xe.createPlugin('LineBreak', {
|
||||||
|
|
||||||
this._in_br = false;
|
this._in_br = false;
|
||||||
clearTimeout(this._br_timer);
|
clearTimeout(this._br_timer);
|
||||||
|
*/
|
||||||
},
|
},
|
||||||
_scrollIntoView : function(nd) {
|
_scrollIntoView : function(nd) {
|
||||||
var $rich, $ctn, top, sctop;
|
var $rich, $ctn, top, sctop;
|
||||||
|
|
@ -2279,6 +2282,9 @@ FileUpload = xe.createPlugin('FileUpload', {
|
||||||
this.$modal_box = app.$root.find('div.xdlw');
|
this.$modal_box = app.$root.find('div.xdlw');
|
||||||
|
|
||||||
if (this.$modal_box.length) {
|
if (this.$modal_box.length) {
|
||||||
|
// #19473993 - move the file window to document's end
|
||||||
|
this.$modal_box.appendTo(document.body);
|
||||||
|
|
||||||
this.$attach_list = this.$modal_box.find('div.xdal');
|
this.$attach_list = this.$modal_box.find('div.xdal');
|
||||||
this.$attach_list
|
this.$attach_list
|
||||||
.mousedown(function(event){ event.stopPropagation(); })
|
.mousedown(function(event){ event.stopPropagation(); })
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue