浏览代码

Ajoute un peu de CSS à la page d'impression

Voir #122 et #166
Marien Fressinaud 12 年之前
父节点
当前提交
ddb9650b5d
共有 1 个文件被更改,包括 8 次插入2 次删除
  1. 8 2
      public/scripts/main.js

+ 8 - 2
public/scripts/main.js

@@ -625,10 +625,16 @@ function init_confirm_action() {
 
 function init_print_action() {
 	$('.print-article').click(function () {
+		var content = "<html><head><style>"
+			+ "body { font-family: Serif; text-align: justify; }"
+			+ "a { color: #000; text-decoration: none; }"
+			+ "a:after { content: ' [' attr(href) ']'}"
+			+ "</style></head><body>"
+			+ $(".flux.current .content").html()
+			+ "</body></html>";
 
-		var content = $(".flux.current .content");
 		var tmp_window = window.open();
-		tmp_window.document.writeln(content.html());
+		tmp_window.document.writeln(content);
 		tmp_window.document.close();
 		tmp_window.focus();
 		tmp_window.print();