Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
angular2-multievent-bindings-plugin
Advanced tools
A small plugin which allows you to bind multiple events in your angular2 templates.
A small plugin that allows for binding multiple events into an Angular2 template.
Currently there is no way to bind multiple events to one expression in angular2 templates like this:
<input type='text' (click,keypress,mousedown)=expressionIdWantToExecuteForAllOfTheseEvents($event) />
This plugin allows you to do this!!!
npm install angular2-multievent-bindings-plugin --save
import this plugin from your node modules and then add it to your EVENT_MANAGER_PLGUINS
:
import {MultiEventPlugin} from 'angular2-multievent-bindings-plugin';
import {EVENT_MANAGER_PLUGINS} from 'angular2/platform/common_dom';
import {bootstrap} from 'angular2/platform/browser';
import {provide} from 'angular2/core';
import {App, APP_PROVIDERS} from './app';
bootstrap(App, [
APP_PROVIDERS,
provide(EVENT_MANAGER_PLUGINS, { multi: true, useClass: MultiEventPlugin})
]).catch((error) => console.error(error));
FAQs
A small plugin which allows you to bind multiple events in your angular2 templates.
The npm package angular2-multievent-bindings-plugin receives a total of 2 weekly downloads. As such, angular2-multievent-bindings-plugin popularity was classified as not popular.
We found that angular2-multievent-bindings-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.