From 5970340bb310fe7c8f266be8680446c43fc7e685 Mon Sep 17 00:00:00 2001 From: echicken <> Date: Fri, 17 Nov 2017 19:31:37 +0000 Subject: [PATCH] Moved queue-reading thing over to lib.js. --- xtrn/chat_pager/lib.js | 10 ++++++++++ xtrn/chat_pager/page_sysop.js | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/xtrn/chat_pager/lib.js b/xtrn/chat_pager/lib.js index 0aa3a5a5b9..0436894beb 100644 --- a/xtrn/chat_pager/lib.js +++ b/xtrn/chat_pager/lib.js @@ -20,6 +20,16 @@ function load_settings(fp) { return ret; } +// Flush any existing named values (valname) and return the last one +// (I haven't checked yet, but I assume Queue is FIFO) +function get_last_queued_value(queue, valname) { + var val, temp_val; + while (typeof (temp_val = queue.read(valname)) !== 'undefined') { + val = temp_val; + } + return val; +} + function user_online(n) { return ( system.node_list[n].status == 3 || system.node_list[n].status == 4 diff --git a/xtrn/chat_pager/page_sysop.js b/xtrn/chat_pager/page_sysop.js index 15edd0d548..6538df1506 100644 --- a/xtrn/chat_pager/page_sysop.js +++ b/xtrn/chat_pager/page_sysop.js @@ -3,16 +3,6 @@ load('frame.js'); load('progress-bar.js'); load(js.exec_dir + 'lib.js'); -// Flush any existing named values (valname) and return the last one -// (I haven't checked yet, but I assume Queue is FIFO) -function get_last_queued_value(queue, valname) { - var val, temp_val; - while (typeof (temp_val = queue.read(valname)) !== 'undefined') { - val = temp_val; - } - return val; -} - function get_node_response_time(filename) { return (file_exists(filename) ? file_date(filename) : null); } -- GitLab