From 1d7f9094c2d2bcb28694545edfdf6dde8c046bef Mon Sep 17 00:00:00 2001 From: wbudic Date: Sat, 14 Aug 2021 16:17:36 +1000 Subject: [PATCH] Impl. the buffered rtf document storing & loading. --- htdocs/cgi-bin/wsrc/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/cgi-bin/wsrc/main.js b/htdocs/cgi-bin/wsrc/main.js index d1f69f1..b59a727 100644 --- a/htdocs/cgi-bin/wsrc/main.js +++ b/htdocs/cgi-bin/wsrc/main.js @@ -24,7 +24,7 @@ var DBI_LVAR_SZ; function onBodyLoadGeneric() { $("input[type=submit], input[type=reset], .ui-widget-content, button, .a_").button(); $("#btn_save_doc").button(); - $("#btn_zero_doc").button(); if($("rtf_buffer").val()==0){$("#btn_zero_doc").hide()}; + $("#btn_zero_doc").button(); if($("#rtf_buffer").val()==0){$("#btn_zero_doc").hide()}; $("#btn_load_doc").button(); $("#btn_load_doc").hide(); if(!LOCALE || LOCALE==="English"){ LOCALE = "en-US"; -- 2.34.1