X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fprefs.js;h=d5db3cd561c31c877e423826620b180959fcc067;hb=4b241ddefd6d6085651c447b60db0528a472667e;hp=e5945343a0f7206a53dfb54a9bb17bd340d19c9f;hpb=ef1ae0937b0eaeb436c5bc7fdb69ffdace945369;p=brisk.git diff --git a/web/prefs.js b/web/prefs.js index e594534..d5db3cd 100644 --- a/web/prefs.js +++ b/web/prefs.js @@ -5,6 +5,7 @@ var l_prefs_list_idx = new Array( 0x00, 0x01, 0x02 ); var l_prefs_list_id = new Array( "all", "auth", "isol" ); var l_comps_name = new Array('s_fg_r', 's_fg_g', 's_fg_b', 's_bg_r', 's_bg_g', 's_bg_b'); +var standup_data_notisol = null; function client_prefs(old) { @@ -35,6 +36,8 @@ function prefs_apply(prefs_new, is_update, is_volat) var i; var relo = false; + console.log('prefs_apply: begin'); + if (typeof(g_prefs) == 'undefined') return false; /* listen management */ @@ -79,9 +82,27 @@ function prefs_apply(prefs_new, is_update, is_volat) tra.show_noauth(); } + if (typeof(prefs) != "undefined") { + if (prefs.listen != l_list_isol && prefs_new.listen == l_list_isol) { + if (standup_data_old != null) { + standup_data_notisol = standup_data.slice(); + } + } + else if (prefs.listen == l_list_isol && prefs_new.listen != l_list_isol) { + if (standup_data_notisol != null) { + standup_data_old = standup_data_notisol; + standup_data_notisol = null; + } + } + } + if (true) { // ricalculation of standup area + g_prefs.listen = prefs_new.listen; + + console.log('here we are'); if (standup_data_old != null) { + console.log('here we are2'); standup_data = standup_data_old; standup_data_old = null; j_stand_cont(standup_data);