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.
ff-svg-path-pushstate-workaround
Advanced tools
Brutal workaround for FF issue #652991
May be useful for SPA who rely on SVG patterns url(#...)
and history.pushState
.
Having this stack you may noticed FF adds none;
to the end of fill/stroke
paths after changing route, causing SVG paths to break.
This workaround should refresh pattern paths on route change, whereby SVG won't break.
It does not observe window.onpopstate
event so you have to call it manually once route changes.
Demo without fix Take a look at Firefox
Usage
import fixSVGPathsFF from 'ff-svg-path-pushstate-workaround'
or
var fixSVGPathsFF = require('ff-svg-path-pushstate-workaround')
or
var fixSVGPathsFF = window.ffSvgPathPushstateWorkaround
// at some point when route changes
fixSVGPathsFF()
By default it will lookup for all tags containing pattern in stroke or fill attributes.
document.querySelectorAll([fill^="url(#"], [stroke^="url(#"])
You may change it to fit your needs by passing custom selector as optional argument
fixSVGPathsFF('path') // will affect all path tags
P.s. Please note that default selector would search only fill/stroke specified by attributes. It won't find its parameters specified by styles, so you have to specify selector that will suit your needs, as mentioned above. (For example 'path' worked for me because on my project only path tags were used and all stroke/path parameters were specified by styles)
As example of usage with react-router
// yes, this should be called on every route change
const fixSVGPatternPathsInFF = () => {
fixSVGPathsFF('path')
}
<Route path='/' component={App}>
<Route path='profile' component={Profile} onEnter={fixSVGPatternPathsInFF} />
...
</Route>
MIT
FAQs
FF SVG patterns path issue workaround
We found that ff-svg-path-pushstate-workaround 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.