Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.

Commit b474111

Browse files
committed
#353, fix ie bug when clicking on checkbox
1 parent d7717b7 commit b474111

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

assets/js/print.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
$container.prepend('<div class="row" id="print-settings">'+
3131
'<div class="col-sm-12">'+
3232
'<nav class="pagination-container clearfix">'+
33-
'<span class="pull-left checkbox checkbox--left">'+
34-
'<input type="checkbox" id="footnote-links">'+
33+
'<span class="pull-left">'+
34+
'<input type="checkbox" id="footnote-links">&nbsp;&nbsp;'+
3535
'<label for="footnote-links">Links as footnotes</label>'+
3636
'</span>'+
3737
'<ul class="pull-right pagination">'+
@@ -104,6 +104,6 @@
104104
});
105105

106106
// To test print preview mode
107-
$.printPreview.printPreview();
107+
// $.printPreview.printPreview();
108108

109109
}) (jQuery);

assets/sass/print/print-general.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ unbedingt Reihenfolge behalten
55
*/
66

77
.print-preview {
8+
display: block !important;
89

910
// Hide elements
1011
.nav-mobile,
@@ -125,6 +126,7 @@ unbedingt Reihenfolge behalten
125126
&.print-footnotes .link-ref {display: inline;}
126127
&.print-footnotes a:after {content: none !important;}
127128
#print-settings .btn {display: inline-block !important;}
129+
#print-settings .pagination-container {display: block !important;}
128130
}
129131

130132
@media print {

0 commit comments

Comments
 (0)