]> code.citadel.org Git - citadel.git/blobdiff - webcit/static/wclib.js
* Added a "preferences and settings" screen for each user.
[citadel.git] / webcit / static / wclib.js
index 25ca7d6dc8f82a8d9e5b127af42ae60db3e5a135..014a8ef661c0c652f0cd3ee33b00f4403e7f8c4f 100644 (file)
@@ -28,11 +28,3 @@ function hide_page_popup() {
 document.poppedLayer.style.visibility = "hidden";
 }
 
-
-// Given a unix timestamp, outputs a date/time using the browser's
-// timezone and locale.
-function output_datetime(unixtimestamp) {
-       var now = new Date();
-       now.setTime(unixtimestamp * 1000);
-       document.write(now.toLocaleString());
-}