Lines 722-729
Link Here
|
722 |
$(document).ready(function(){ |
722 |
$(document).ready(function(){ |
723 |
$("#headings").click(function(){ |
723 |
$("#headings").click(function(){ |
724 |
$("#style").val(function(i, text) { |
724 |
$("#style").val(function(i, text) { |
725 |
return text + '\nbody, #slip h1, #slip h2, #slip h3, #slip h4, #slip h5, #slip h6,\n' + |
725 |
return text + 'pre, #slip, #slip h1, #slip h2, #slip h3, #slip h4, #slip h5, #slip h6,\n' + |
726 |
'#receipt h1, #receipt h2, #receipt h3, #receipt h4, #receipt h5, #receipt h6 {\n' + |
726 |
'#receipt, #receipt h1, #receipt h2, #receipt h3, #receipt h4, #receipt h5, #receipt h6 {\n' + |
727 |
'// insert CSS here\n' + |
727 |
'// insert CSS here\n' + |
728 |
'}'; |
728 |
'}'; |
729 |
}); |
729 |
}); |
Lines 737-744
Link Here
|
737 |
}); |
737 |
}); |
738 |
$("#text").click(function(){ |
738 |
$("#text").click(function(){ |
739 |
$("#style").val(function(i, text) { |
739 |
$("#style").val(function(i, text) { |
740 |
return text + '\nbody, #slip h1, #slip h2, #slip h3, #slip h4, #slip h5, #slip h6,\n' + |
740 |
return text + 'pre, #slip, #slip h1, #slip h2, #slip h3, #slip h4, #slip h5, #slip h6,\n' + |
741 |
'#receipt h1, #receipt h2, #receipt h3, #receipt h4, #receipt h5, #receipt h6,\n' + |
741 |
'#receipt, #receipt h1, #receipt h2, #receipt h3, #receipt h4, #receipt h5, #receipt h6,\n' + |
742 |
'table, th, td, th:last-child, td:last-child {\n' + |
742 |
'table, th, td, th:last-child, td:last-child {\n' + |
743 |
'// insert CSS here\n' + |
743 |
'// insert CSS here\n' + |
744 |
'}'; |
744 |
'}'; |
745 |
- |
|
|