test
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

show strikethrough

12Me21 f94787a7 b144f987

+4
+4
test3.html
··· 8 8 } 9 9 input, button, label { 10 10 touch-action: manipulation; 11 + user-select: none; 12 + cursor: pointer; 11 13 } 12 14 </style> 13 15 ··· 91 93 let styles = { 92 94 italic: $italic.checked && 'font-style:italic;', 93 95 bold: $bold.checked && 'font-weight:bold;', 96 + strikethrough: $strikethrough.checked && 'text-decoration:line-through;', 94 97 } 95 98 if (styles[feature.style]) { 96 99 lstrip = Math.max(feature.strip[0],lstrip) ··· 141 144 enable style rendering: 142 145 <label>italic<input type=checkbox id=$italic checked></label> 143 146 <label>bold<input type=checkbox id=$bold checked></label> 147 + <label>strikethrough<input type=checkbox id=$strikethrough checked></label> 144 148 </form> 145 149 </textarea> 146 150 </div>