mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 13:53:48 +01:00
Use non break hyphen in basis
This commit is contained in:
parent
73ccb822c6
commit
48574634cd
@ -32,6 +32,8 @@ draft: false
|
|||||||
}
|
}
|
||||||
window.onload = async () => {
|
window.onload = async () => {
|
||||||
window.browser=bowser.getParser(window.navigator.userAgent);
|
window.browser=bowser.getParser(window.navigator.userAgent);
|
||||||
|
$("input[type='checkbox']:checked").trigger("change")
|
||||||
|
|
||||||
adjustSticky();
|
adjustSticky();
|
||||||
$(window).resize(adjustSticky)
|
$(window).resize(adjustSticky)
|
||||||
const LatexInline = ['\\(', '\\)']
|
const LatexInline = ['\\(', '\\)']
|
||||||
@ -370,7 +372,7 @@ draft: false
|
|||||||
$("<thead/>").addClass("sticky").append(head).appendTo(table)
|
$("<thead/>").addClass("sticky").append(head).appendTo(table)
|
||||||
var tbody = $("<tbody/>").appendTo(table)
|
var tbody = $("<tbody/>").appendTo(table)
|
||||||
head.append(["Molecule", "Transition"].map(x => $("<th/>").text(x)))
|
head.append(["Molecule", "Transition"].map(x => $("<th/>").text(x)))
|
||||||
head.append(sortedMethods.map(x => $("<th/>").text(x.toString())))
|
head.append(sortedMethods.map(x => $("<th/>").text(x.toString().split('-').join('\u2011'))))
|
||||||
adjustSticky();
|
adjustSticky();
|
||||||
datadic = new Map()
|
datadic = new Map()
|
||||||
for (const dat of paperdata) {
|
for (const dat of paperdata) {
|
||||||
@ -516,16 +518,16 @@ draft: false
|
|||||||
<legend>Vertical excitation kind</legend>
|
<legend>Vertical excitation kind</legend>
|
||||||
<ul class="nestedCbList" style="padding-left: 0em;">
|
<ul class="nestedCbList" style="padding-left: 0em;">
|
||||||
<li>
|
<li>
|
||||||
<input type="checkbox" onchange="nestedCheckbox_change(event)" id="cb_fileType_All"></input>
|
<input type="checkbox" checked onchange="nestedCheckbox_change(event)" id="cb_fileType_All"></input>
|
||||||
<label for="cb_fileType_All"> All</label>
|
<label for="cb_fileType_All"> All</label>
|
||||||
</li>
|
</li>
|
||||||
<ul class="nestedCbList" id="cb_exVertKindList">
|
<ul class="nestedCbList" id="cb_exVertKindList">
|
||||||
<li>
|
<li>
|
||||||
<input type="checkbox" checked onchange="nestedCheckbox_change(event)" id="cb_abs" value="1" name="datatype">
|
<input type="checkbox" onchange="nestedCheckbox_change(event)" id="cb_abs" value="1" name="datatype">
|
||||||
<label for="cb_abs">Absorption</label>
|
<label for="cb_abs">Absorption</label>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<input type="checkbox" checked onchange="nestedCheckbox_change(event)" id="cb_fluo" value="2" name="datatype">
|
<input type="checkbox" onchange="nestedCheckbox_change(event)" id="cb_fluo" value="2" name="datatype">
|
||||||
<label for="fluo">Fluorescence</label>
|
<label for="fluo">Fluorescence</label>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user