Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
scroll-freezer
Advanced tools
Frost scroll event on window. A no-jumping javascript alternative to overflow:hidden.
Frost scroll event on window. A no-jumping javascript alternative to overflow:hidden.
What's the probelem with overflow:hidden
? Well if people have their browsers
defaulting to show scrollbars (not overlayed fancy ghost ones like mac/safari)
content will jump to right when overflow is applied. It's kind of ugly/janky.
// assuming an instance
const myScrollFreezer = new ScrollFreezer('body');
Method | Description |
---|---|
myScrollFreezer.freeze() | Locks scroll. Sets isFrozen=true |
myScrollFreezer.defrost() | Unlocks scroll. Sets isFrozen=false |
myScrollFreezer.toggleFreeze() | toggle state between frozeen and defrosted |
myScrollFreezer.getState() | returns an state Object . {isFrozen: bool, curScrollLockPos: number} |
// Instanciate
var bodyScrollFreezer = new ScrollFreezer('body');
// starts at false
document.querySelector('.someTrigger').addEventListener('click', function(){
bodyScrollFreezer.toggleFreeze();
}, false);
/*
* Manual verfication Example
*/
var isFrozen = bodyScrollFreezer.getState().isFrozen;
if (isFrozen){
bodyScrollFreezer.defrost()
} else {
bodyScrollFreezer.freeze()
}
Technique originally seen at facebook, at least that's what @fhilM said.
Based on philm SO answer 🙌
FAQs
Frost scroll event on window. A no-jumping javascript alternative to overflow:hidden.
We found that scroll-freezer 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.