Diff: CalculatorForSampleMountingInDil

Search SINQ Wiki:
SINQ LIN

SINQ Wiki
- Main Page
- Search SINQ Wiki
- Sample Environment
- Probenumg. Intern
- Troubleshooting SICS

This Page
- Page Info
- Printer Friendly

Referenced by
...nobody

Wiki Info
- Unused pages
- Undefined pages
- RecentChanges
- Page Index
- System Info
- JSPWiki Docu
- SandBox
- OneMinuteWiki
- Create a New Page




JSPWiki v2.0.52


Difference between version 154 and version 153:
Lines 80-84 were replaced by lines 80-81
- var straight = document.getElementsByName("S");
- for (el of straight) {
- console.log(el.style.display);
- el.style.display = "none";
- }
+ s_display = "none";
+ e_display = "block";
Lines 86-89 were replaced by lines 83-87
- var edged = document.getElementsByName("E");
- for (el of edged) {
- el.style.display = "none";
- }
+ s_display = "none";
+ e_display = "block";
+ }
+ for (el of document.getElementsByName("S")) {
+ el.style.display = s_display;
At line 90 added 3 lines.
+ for (el of document.getElementsByName("E")) {
+ el.style.display = e_display;
+ }
At line 170 added 3 lines.
+ for (el of document.getElementsByName("S")) {
+ el.style.display = "none";
+ }

Back to CalculatorForSampleMountingInDil, or to the Page History.