Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@devexpress/utils

Package Overview
Dependencies
Maintainers
19
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devexpress/utils - npm Package Compare versions

Comparing version 1.4.1 to 1.4.2

17

lib/utils/dom.js

@@ -197,17 +197,2 @@ "use strict";

}
function getAbsolutePositionY_Opera(curEl) {
var isFirstCycle = true;
if (curEl && DomUtils.isHTMLTableRowElement(curEl) && curEl.cells.length > 0)
curEl = curEl.cells[0];
var pos = getAbsoluteScrollOffset_OperaFF(curEl, false);
while (curEl != null) {
pos += curEl.offsetTop;
if (!isFirstCycle)
pos -= curEl.scrollTop;
curEl = curEl.offsetParent;
isFirstCycle = false;
}
pos += document.body.scrollTop;
return pos;
}
function getAbsolutePositionY_NS(curEl) {

@@ -248,4 +233,2 @@ var pos = getAbsoluteScrollOffset_OperaFF(curEl, false);

return getAbsolutePositionY_FF3(element);
else if (browser_1.Browser.Opera)
return getAbsolutePositionY_Opera(element);
else if (browser_1.Browser.NetscapeFamily && (!browser_1.Browser.Firefox || browser_1.Browser.Version < 3))

@@ -252,0 +235,0 @@ return getAbsolutePositionY_NS(element);

2

package.json
{
"name": "@devexpress/utils",
"version": "1.4.1",
"version": "1.4.2",
"description": "DevExpress utils",

@@ -5,0 +5,0 @@ "author": "DevExpress Inc.",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc