Last active
December 21, 2017 12:20
-
-
Save abhishek77in/45812db0164cc49afdb244c490862d9d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var printPage = (function () { | |
var style = document.createElement('style'); | |
$(".columns").append(style) | |
return function (rule) { | |
style.innerHTML = rule; | |
}; | |
}()); | |
printPage.size = function (marginTop) { | |
printPage('@media print { @page {margin-top: ' + marginTop + 'cm} }'); | |
}; | |
// printPage.size("10") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment