| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /SolidCP/Portal/tinymce/themes/inlite/src/main/js/tinymce/inlite/core/ |
Upload File : |
/**
* Measure.js
*
* Released under LGPL License.
* Copyright (c) 1999-2016 Ephox Corp. All rights reserved
*
* License: http://www.tinymce.com/license
* Contributing: http://www.tinymce.com/contributing
*/
define('tinymce/inlite/core/Measure', [
'global!tinymce.DOM',
'global!tinymce.geom.Rect',
'tinymce/inlite/core/Convert'
], function (DOM, Rect, Convert) {
var toAbsolute = function (rect) {
var vp = DOM.getViewPort();
return {
x: rect.x + vp.x,
y: rect.y + vp.y,
w: rect.w,
h: rect.h
};
};
var getElementRect = function (editor, elm) {
var pos, targetRect, root;
pos = DOM.getPos(editor.getContentAreaContainer());
targetRect = editor.dom.getRect(elm);
root = editor.dom.getRoot();
// Adjust targetPos for scrolling in the editor
if (root.nodeName == 'BODY') {
targetRect.x -= root.ownerDocument.documentElement.scrollLeft || root.scrollLeft;
targetRect.y -= root.ownerDocument.documentElement.scrollTop || root.scrollTop;
}
targetRect.x += pos.x;
targetRect.y += pos.y;
// We need to use these instead of the rect values since the style
// size properites might not be the same as the real size for a table
targetRect.w = elm.clientWidth > 0 ? elm.clientWidth : elm.offsetWidth;
targetRect.h = elm.clientHeight > 0 ? elm.clientHeight : elm.offsetHeight;
return targetRect;
};
var getPageAreaRect = function (editor) {
return DOM.getRect(editor.getElement().ownerDocument.body);
};
var getContentAreaRect = function (editor) {
return toAbsolute(DOM.getRect(editor.getContentAreaContainer() || editor.getBody()));
};
var getSelectionRect = function (editor) {
var clientRect = editor.selection.getBoundingClientRect();
return clientRect ? toAbsolute(Convert.fromClientRect(clientRect)) : null;
};
return {
getElementRect: getElementRect,
getPageAreaRect: getPageAreaRect,
getContentAreaRect: getContentAreaRect,
getSelectionRect: getSelectionRect
};
});