chrome-shadow-fixer
v1.0.1
Published
fixes box-shadows to be printable in Chrome
Downloads
6
Readme
chrome-shadow-fixer
This module makes box-shadows printable in Chrome (up to v.38).
Usage
Browser
Add the javascript file /dist/javascript.js:
<script type="text/javascript" src="javascript.js"></script>
and call:
<script>
window.onload = function() {
ChromeShadowFixer.fix();
};
</script>
ES6
Install via npm:
npm i --save chrome-shadow-fixer
Import and use with:
import {fix} from 'chrome-shadow-fixer';
fix();
Options
You can apply the method fix on specific elements by passing them:
const elements = document.getElementsByTagName('*');
fix(elements);