1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 18:30:34 +00:00
pdf2htmlEX/share/hide_pages.js

13 lines
299 B
JavaScript
Raw Normal View History

2012-09-12 16:49:02 +00:00
/* hide all pages */
(function(){
2012-09-18 18:13:26 +00:00
var s = '.b{display:none;}';
2012-09-12 16:49:02 +00:00
var n = document.createElement("style");
n.type = "text/css";
if (n.styleSheet) {
n.styleSheet.cssText = s;
} else {
n.appendChild(document.createTextNode(s));
}
document.getElementsByTagName("head")[0].appendChild(n);
})();