Fossil SCM
Fixed a copy/paste typo from [ae28ae82] which broke some JS-using pages.
Commit
b22bf1c9548abe8b5143fcd0079c2dd006a815db2da0ab11783151817853c25c
Parent
fa667a930872631…
1 file changed
+2
+2
| --- src/fossil.dom.js | ||
| +++ src/fossil.dom.js | ||
| @@ -72,10 +72,12 @@ | ||
| 72 | 72 | dom.footer = dom.createElemFactory('footer'); |
| 73 | 73 | dom.section = dom.createElemFactory('section'); |
| 74 | 74 | dom.span = dom.createElemFactory('span'); |
| 75 | 75 | dom.strong = dom.createElemFactory('strong'); |
| 76 | 76 | dom.em = dom.createElemFactory('em'); |
| 77 | + dom.ins = dom.createElemFactory('ins'); | |
| 78 | + dom.del = dom.createElemFactory('del'); | |
| 77 | 79 | /** |
| 78 | 80 | Returns a LABEL element. If passed an argument, |
| 79 | 81 | it must be an id or an HTMLElement with an id, |
| 80 | 82 | and that id is set as the 'for' attribute of the |
| 81 | 83 | label. If passed 2 arguments, the 2nd is text or |
| 82 | 84 |
| --- src/fossil.dom.js | |
| +++ src/fossil.dom.js | |
| @@ -72,10 +72,12 @@ | |
| 72 | dom.footer = dom.createElemFactory('footer'); |
| 73 | dom.section = dom.createElemFactory('section'); |
| 74 | dom.span = dom.createElemFactory('span'); |
| 75 | dom.strong = dom.createElemFactory('strong'); |
| 76 | dom.em = dom.createElemFactory('em'); |
| 77 | /** |
| 78 | Returns a LABEL element. If passed an argument, |
| 79 | it must be an id or an HTMLElement with an id, |
| 80 | and that id is set as the 'for' attribute of the |
| 81 | label. If passed 2 arguments, the 2nd is text or |
| 82 |
| --- src/fossil.dom.js | |
| +++ src/fossil.dom.js | |
| @@ -72,10 +72,12 @@ | |
| 72 | dom.footer = dom.createElemFactory('footer'); |
| 73 | dom.section = dom.createElemFactory('section'); |
| 74 | dom.span = dom.createElemFactory('span'); |
| 75 | dom.strong = dom.createElemFactory('strong'); |
| 76 | dom.em = dom.createElemFactory('em'); |
| 77 | dom.ins = dom.createElemFactory('ins'); |
| 78 | dom.del = dom.createElemFactory('del'); |
| 79 | /** |
| 80 | Returns a LABEL element. If passed an argument, |
| 81 | it must be an id or an HTMLElement with an id, |
| 82 | and that id is set as the 'for' attribute of the |
| 83 | label. If passed 2 arguments, the 2nd is text or |
| 84 |