소스 검색

[minor] [print] create print html in a new window, so as to avoid style creep

version-14
Anand Doshi 12 년 전
부모
커밋
cf211e4888
1개의 변경된 파일2개의 추가작업 그리고 6개의 파일을 삭제
  1. +2
    -6
      public/js/legacy/widgets/form/print_format.js

+ 2
- 6
public/js/legacy/widgets/form/print_format.js 파일 보기

@@ -45,12 +45,7 @@ _p.def_print_style_other = "\n.simpletable, .noborder { \
}";

_p.go = function(html) {
var w = window.open();
if(!w) {
msgprint(_("Please enable pop-ups"));
return;
}
w.document.write(html);
var w = _p.preview(html);
w.print();
w.close();
}
@@ -62,6 +57,7 @@ _p.preview = function(html) {
return;
}
w.document.write(html);
return w
}




불러오는 중...
취소
저장