New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-stackables

Package Overview
Dependencies
Maintainers
4
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-stackables - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

5

CHANGELOG.md
# angular-stackables ChangeLog
## 1.2.1 - 2017-05-30
### Fixed
- Ensure parent of stackable exists before calling `closest`.
## 1.2.0 - 2017-05-26

@@ -4,0 +9,0 @@

8

index.js

@@ -167,6 +167,10 @@ /*!

var parent;
var parentDialog;
// get z-index of parent dialog, if any
var parentDialog = angular.element(element.parent()[0].closest('dialog'));
if(parentDialog.length === 0) {
parent = element.parent()[0];
if(parent) {
parentDialog = angular.element(parent.closest('dialog'));
}
if(!parentDialog || parentDialog.length === 0) {
// no dialog parent; move dialog to body to simplify z-indexing

@@ -173,0 +177,0 @@ parent = body;

{
"name": "angular-stackables",
"version": "1.2.0",
"version": "1.2.1",
"description": "angular-stackables",

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

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