Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
ember-ignore-children-helper
Advanced tools
Helps you ignore events that didn't directly target your own element.
No actual children were neglected in the making of this addon.
This Ember addon provides a single helper named ignore-children
. It lets you declare an event handler that will only fire for events that directly target the given element. Events from its children will be ignored.
For example, assume that your-component
accepts an action named doSomething
:
{{your-component doSomething=(action "alrightyThen")}}
Then within your-component.hbs
, you can say:
<div class="outer" onclick={{action (ignore-children doSomething) }}>
Clicks in this area will cause "doSomething" to be called.
<div class="inner">But clicks in this area will not! ignore-children is blocking them for us.</div>
</div>
See tests/dummy/app/index.hbs for a working example you can play with.
ember install ember-ignore-children-helper
Standard ember addon conventions apply. In this repo, ember s
will run the included dummy app and ember test
will run the test suite.
FAQs
Helps you ignore events that didn't directly target your own element.
We found that ember-ignore-children-helper 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.