Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
``` _ _ ____ _ _ _ __ ___ ___ __| (_) __ _ / ___| |__ ___ ___| | __ | '_ ` _ \ / _ \/ _` | |/ _` | | | '_ \ / _ \/ __| |/ / | | | | | | __/ (_| | | (_| | |___| | | | __/ (__| < |_| |_| |_|\__
_ _ ____ _ _
_ __ ___ ___ __| (_) __ _ / ___| |__ ___ ___| | __
| '_ ` _ \ / _ \/ _` | |/ _` | | | '_ \ / _ \/ __| |/ /
| | | | | | __/ (_| | | (_| | |___| | | | __/ (__| <
|_| |_| |_|\___|\__,_|_|\__,_|\____|_| |_|\___|\___|_|\_\
This is a simple wrapper around matchMedia to run code on entry and exit from media queries. It also uses browser resize as a fallback for browsers that don't support matchMedia.
There are two examples here: http://sparkbox.github.io/mediaCheck/
Type: string
This is the mediaquery that will trigger the specified action. It should be in the form:
(min-width: 420px)
(min-width: 35em)
(max-width: 800px)
(max-width: 60em)
Type: function
This function will execute once when the mediaquery becomes active.
Type: function
This function will execute once when the mediaquery becomes inactive.
Type: function
This function will execute once when the mediaquery changes state.
mediaCheck({
media: '(max-width: 420px)',
entry: function() {
console.log('starting 420');
},
exit: function() {
console.log('leaving 420');
},
both: function() {
console.log('changing state');
}
});
(min-width: 320px and max-width: 800px)
[min|max]-aspect-ratio
mq
to entry
, exit
, and both
FAQs
``` _ _ ____ _ _ _ __ ___ ___ __| (_) __ _ / ___| |__ ___ ___| | __ | '_ ` _ \ / _ \/ _` | |/ _` | | | '_ \ / _ \/ __| |/ / | | | | | | __/ (_| | | (_| | |___| | | | __/ (__| < |_| |_| |_|\__
We found that mediaCheck 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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.