X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fstatic%2Fjs%2Fmain.js;h=5aac5f8e66f4efe3456e35c1f8a44bd44c285030;hb=ac21736a1bf75d8a18234d56447c52afb5f236f3;hp=31e7ad0ba435eda3d6018b50dbc31c2cd35e94b3;hpb=1de34ae393d0f8bf9c1fb9131765ee50449f4806;p=citadel.git diff --git a/webcit-ng/static/js/main.js b/webcit-ng/static/js/main.js index 31e7ad0ba..5aac5f8e6 100644 --- a/webcit-ng/static/js/main.js +++ b/webcit-ng/static/js/main.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2016-2017 by the citadel.org team +// Copyright (c) 2016-2018 by the citadel.org team // // This program is open source software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 3. @@ -18,6 +18,8 @@ var current_view = 0; var logged_in = 0; var current_user = _("Not logged in."); var serv_info; +var last_seen = 0; +var messages_per_page = 20; // Placeholder for when we add i18n later @@ -30,7 +32,7 @@ function _(x) { // Useful for generating one-time-use div names // function randomString(length) { - var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz'.split(''); + var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghiklmnopqrstuvwxyz'.split(''); if (! length) { length = Math.floor(Math.random() * chars.length); @@ -112,7 +114,7 @@ function ctdl_startup_2(data) { // Display a room list in the main div. // function display_room_list() { - document.getElementById("sidebar").innerHTML = "" ; // show throbber while loading + document.getElementById("roomlist").innerHTML = "" ; // show throbber while loading var request = new XMLHttpRequest(); request.open("GET", "/ctdl/r/", true); @@ -138,23 +140,23 @@ function display_room_list_renderer(data) { return(a.name < b.name); }); - new_sidebar_text = ""; + document.getElementById("roomlist").innerHTML = new_roomlist_text ; } // Update the "banner" div with all relevant info. @@ -163,6 +165,7 @@ function update_banner() { detect_logged_in(); if (current_room) { document.getElementById("ctdl_banner_title").innerHTML = current_room; + document.title = current_room; } else { document.getElementById("ctdl_banner_title").innerHTML = serv_info.serv_humannode; @@ -196,6 +199,7 @@ function gotoroom_2(data) { total_messages = data.total_messages; current_view = data.current_view; default_view = data.default_view; + last_seen = data.last_seen; update_banner(); - render_room_view(); + render_room_view(0, 9999999999); }