Browse Source

Hide the data picker form, let first check how it behaves in prod using the URL parameter only.

I believe this will not work in prod since the file are copied after the data.js is generated.
pull/2705/head
Benoit Marty 5 months ago
parent
commit
d19078d3df
  1. 2
      screenshots/html/script.js

2
screenshots/html/script.js

@ -149,6 +149,7 @@ function addForm() { @@ -149,6 +149,7 @@ function addForm() {
};
label2.appendChild(input2);
form.appendChild(label2);
/*
// Add a date picker to input the minimum date of modification
const label3 = document.createElement('label');
label3.textContent = 'If modified since:';
@ -168,6 +169,7 @@ function addForm() { @@ -168,6 +169,7 @@ function addForm() {
addTable();
};
form.appendChild(dateInput);
*/
// Add a span with id result to display the number of lines
const lines = document.createElement('span');
lines.id = 'lines';

Loading…
Cancel
Save