提交 c48492c7 编写于 作者: I Ivan Blinkov

CLICKHOUSE-4064: expand <details> before any print (including to pdf)

上级 5384ce0d
......@@ -231,6 +231,20 @@
base: "{{ base_url }}"
}
});
var beforePrint = function() {
var details = document.getElementsByTagName("details");
for (var i = 0; i < details.length; ++i) {
details[i].open = 1;
}
};
if (window.matchMedia) {
window.matchMedia('print').addListener(function(q) {
if (q.matches) {
beforePrint();
}
});
}
window.onbeforeprint = beforePrint;
});
</script>
<!-- Yandex.Metrika counter -->
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册