Changes On Branch oops
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch oops Excluding Merge-Ins

This is equivalent to a diff from fa667a9308 to ae28ae8273

2021-08-31
02:56
Fixed a copy/paste typo from [ae28ae82] which broke some JS-using pages. check-in: b22bf1c954 user: stephan tags: trunk
2021-08-30
22:39
Merge fixed from trunk into the diff-color-enhancements branch. check-in: 06a4494e01 user: drh tags: diff-color-enhancements
16:43
Added fossil.dom.ins/del() factory functions in prep for JS-based diff renderer. (Later) This check-in seems to break chat on the server-side. (Later still) fixed in trunk - copy/paste typo. Closed-Leaf check-in: ae28ae8273 user: stephan tags: oops
2021-08-29
12:58
Minor sbsdiff.js tweak to try to avoid unsightly page-level horizontal scrollbars, as reported in [forum:96e40f90db | forum post 96e40f90db]. check-in: fa667a9308 user: stephan tags: trunk
2021-08-28
16:36
Further improvements to fossil_temp_filename() to help ensure that the correct directory separators are used on both unix and windows. check-in: 5434d2e32c user: drh tags: trunk

Changes to src/fossil.dom.js.

70
71
72
73
74
75
76


77
78
79
80
81
82
83
  dom.pre = dom.createElemFactory('pre');
  dom.header = dom.createElemFactory('header');
  dom.footer = dom.createElemFactory('footer');
  dom.section = dom.createElemFactory('section');
  dom.span = dom.createElemFactory('span');
  dom.strong = dom.createElemFactory('strong');
  dom.em = dom.createElemFactory('em');


  /**
     Returns a LABEL element. If passed an argument,
     it must be an id or an HTMLElement with an id,
     and that id is set as the 'for' attribute of the
     label. If passed 2 arguments, the 2nd is text or
     a DOM element to append to the label.
  */







>
>







70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
  dom.pre = dom.createElemFactory('pre');
  dom.header = dom.createElemFactory('header');
  dom.footer = dom.createElemFactory('footer');
  dom.section = dom.createElemFactory('section');
  dom.span = dom.createElemFactory('span');
  dom.strong = dom.createElemFactory('strong');
  dom.em = dom.createElemFactory('em');
  dom.ins = D.createElemFactory('ins');
  dom.del = D.createElemFactory('del');
  /**
     Returns a LABEL element. If passed an argument,
     it must be an id or an HTMLElement with an id,
     and that id is set as the 'for' attribute of the
     label. If passed 2 arguments, the 2nd is text or
     a DOM element to append to the label.
  */