info reset action added
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Fri, 13 Nov 2015 17:44:38 +0000 (18:44 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Fri, 13 Nov 2015 17:44:38 +0000 (18:44 +0100)
web/Obj/brisk.phh
web/info.js

index ce5d106..a8220f8 100644 (file)
@@ -1643,6 +1643,12 @@ class Brisk
     }
   }
 
+  /*
+    function info_show($user, $user_login, $dt)
+
+    if success return assoc. array with "ret" => 0 and other fields
+    else return an assoc. array with "ret: != 0 and "mesg" with an error description
+  */
   function info_show($user, $user_login, $dt)
   {
       GLOBAL $G_lang, $mlang_brisk, $G_base;
index c7f473f..8e30988 100644 (file)
@@ -65,29 +65,10 @@ function info_show_cb(e)
     }
 }
 
-function info_save()
-{
-    var ret;
-
-    info = info_fld($('info'));
-    ret = info.dom2json();
-
-    console.log(ret);
-
-    if (0 == 1) {
-        if (typeof(g_prefs) == 'undefined')
-            return false;
-
-        ret = server_request('mesg', 'info|save','__POST__', 'prefs', JSON.stringify(g_prefs));
-
-        if (ret == 1)
-            $('preferences').style.visibility = 'hidden';
-    }
-}
-
 function info_reset()
 {
-    var ret;
+    var ret, target;
 
-    ret = server_request('mesg', 'prefs|reset');
+    target = $('info').getElementsByClassName('login_id')[0].innerHTML;
+    return info_show(target);
 }