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

electrum-events

Package Overview
Dependencies
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electrum-events - npm Package Compare versions

Comparing version 2.3.2 to 2.3.3

8

lib/event-handlers.js

@@ -234,3 +234,2 @@ 'use strict';

obj.onBlur = function (e) {
/* jshint expr: true */
existingOnBlur && existingOnBlur.call(obj, e);

@@ -241,3 +240,2 @@ eh.handleBlur(e);

obj.onFocus = function (e) {
/* jshint expr: true */
existingOnFocus && existingOnFocus.call(obj, e);

@@ -248,3 +246,2 @@ eh.handleFocus(e);

obj.onClick = function (e) {
/* jshint expr: true */
existingOnClick && existingOnClick.call(obj, e);

@@ -255,3 +252,2 @@ eh.handleClick(e);

obj.onChange = function (e) {
/* jshint expr: true */
existingOnChange && existingOnChange.call(obj, e);

@@ -262,3 +258,2 @@ eh.handleChange(e);

obj.onKeyDown = function (e) {
/* jshint expr: true */
existingOnKeyDown && existingOnKeyDown.call(obj, e);

@@ -269,3 +264,2 @@ eh.handleKeyDown(e);

obj.onKeyUp = function (e) {
/* jshint expr: true */
existingOnKeyUp && existingOnKeyUp.call(obj, e);

@@ -276,3 +270,2 @@ eh.handleKeyUp(e);

obj.onKeyPress = function (e) {
/* jshint expr: true */
existingOnKeyPress && existingOnKeyPress.call(obj, e);

@@ -283,3 +276,2 @@ eh.handleKeyPress(e);

obj.onSelect = function (e) {
/* jshint expr: true */
existingOnSelect && existingOnSelect.call(obj, e);

@@ -286,0 +278,0 @@ eh.handleSelect(e);

6

package.json
{
"name": "electrum-events",
"version": "2.3.2",
"version": "2.3.3",
"description": "Electrum Events forwards web component events to the bus.",

@@ -33,4 +33,4 @@ "main": "lib/index.js",

"devDependencies": {
"babel-env": "^2.3.1",
"generic-js-env": "^2.2.0",
"babel-env": "^2.4.0",
"generic-js-env": "^2.2.4",
"mai-chai": "^3.3.2",

@@ -37,0 +37,0 @@ "react": "^15.4.2",

@@ -118,3 +118,3 @@ import {Trace} from 'electrum-trace';

obj.onBlur =
e => { /* jshint expr: true */
e => {
existingOnBlur && existingOnBlur.call (obj, e);

@@ -125,3 +125,3 @@ eh.handleBlur (e);

obj.onFocus =
e => { /* jshint expr: true */
e => {
existingOnFocus && existingOnFocus.call (obj, e);

@@ -132,3 +132,3 @@ eh.handleFocus (e);

obj.onClick =
e => { /* jshint expr: true */
e => {
existingOnClick && existingOnClick.call (obj, e);

@@ -139,3 +139,3 @@ eh.handleClick (e);

obj.onChange =
e => { /* jshint expr: true */
e => {
existingOnChange && existingOnChange.call (obj, e);

@@ -146,3 +146,3 @@ eh.handleChange (e);

obj.onKeyDown =
e => { /* jshint expr: true */
e => {
existingOnKeyDown && existingOnKeyDown.call (obj, e);

@@ -153,3 +153,3 @@ eh.handleKeyDown (e);

obj.onKeyUp =
e => { /* jshint expr: true */
e => {
existingOnKeyUp && existingOnKeyUp.call (obj, e);

@@ -160,3 +160,3 @@ eh.handleKeyUp (e);

obj.onKeyPress =
e => { /* jshint expr: true */
e => {
existingOnKeyPress && existingOnKeyPress.call (obj, e);

@@ -167,3 +167,3 @@ eh.handleKeyPress (e);

obj.onSelect =
e => { /* jshint expr: true */
e => {
existingOnSelect && existingOnSelect.call (obj, e);

@@ -170,0 +170,0 @@ eh.handleSelect (e);

Sorry, the diff of this file is not supported yet

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