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

angular-es-utils

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-es-utils - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

7

lib/animation/index.js

@@ -34,3 +34,6 @@ /**

EVENTS.forEach(function (event) {
return element.addEventListener(event, doneHook, false);
element.addEventListener(event, function () {
element.classList.remove(className);
doneHook();
}, false);
});

@@ -42,3 +45,3 @@ },

EVENTS.forEach(function (event) {
return element.addEventListener(event, doneHook, false);
element.addEventListener(event, doneHook, false);
});

@@ -45,0 +48,0 @@ }

{
"name": "angular-es-utils",
"version": "1.0.8",
"version": "1.0.9",
"description": "es utils design for angular1.x",

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

@@ -27,3 +27,8 @@ /**

element.classList.add(className);
EVENTS.forEach(event => element.addEventListener(event, doneHook, false));
EVENTS.forEach(event => {
element.addEventListener(event, () => {
element.classList.remove(className);
doneHook();
}, false)
});
},

@@ -33,5 +38,7 @@

element.classList.remove(className);
EVENTS.forEach(event => element.addEventListener(event, doneHook, false));
EVENTS.forEach(event => {
element.addEventListener(event, doneHook, false)
});
}
};

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