Socket
Socket
Sign inDemoInstall

fbjs

Package Overview
Dependencies
Maintainers
8
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fbjs - npm Package Compare versions

Comparing version 0.8.14 to 0.8.15

6

CHANGELOG.md
## [Unreleased]
## [0.8.15] - 2017-09-07
### Fixed
- `getDocumentScrollElement` now correctly returns the `<html>` element in Chrome 61 instead of `<body>`.
## [0.8.14] - 2017-07-25

@@ -5,0 +11,0 @@

3

lib/getDocumentScrollElement.js

@@ -27,2 +27,5 @@ /**

doc = doc || document;
if (doc.scrollingElement) {
return doc.scrollingElement;
}
return !isWebkit && doc.compatMode === 'CSS1Compat' ? doc.documentElement : doc.body;

@@ -29,0 +32,0 @@ }

2

package.json
{
"name": "fbjs",
"version": "0.8.14",
"version": "0.8.15",
"description": "A collection of utility libraries used by other Facebook JS projects",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

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