aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-01-13 22:49:02 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-01-13 22:49:02 +0100
commit4f2ee9ba021e46940cc247a90f35cb0ba4b379e3 (patch)
tree9b3248557031a1f3cf0b343aecd45b622be39728
parentRepair timebar. (diff)
downloadcalp-4f2ee9ba021e46940cc247a90f35cb0ba4b379e3.tar.gz
calp-4f2ee9ba021e46940cc247a90f35cb0ba4b379e3.tar.xz
Note some javascript functions as private.
-rw-r--r--static/input_list.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/static/input_list.js b/static/input_list.js
index 9397e6ee..7cfbc080 100644
--- a/static/input_list.js
+++ b/static/input_list.js
@@ -9,6 +9,7 @@
*/
+/* private */
function transferListeners(old_unit, new_unit) {
for (let [o, n] of zip([old_unit, ...old_unit.querySelectorAll("*")],
[new_unit, ...new_unit.querySelectorAll("*")])) {
@@ -22,6 +23,7 @@ function transferListeners(old_unit, new_unit) {
}
+/* private */
function advance_final(input_list) {
let old_unit = input_list.unit;
let new_unit = old_unit.cloneNode(true);
@@ -31,7 +33,7 @@ function advance_final(input_list) {
}
-
+/* private */
function update_inline_list () {
/* can target self */