rbrindley: branch rbrindley/astman_revamp r4574 - /team/rbrindley/astman_reva...

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Thu Mar 5 08:42:25 CST 2009


Author: rbrindley
Date: Thu Mar  5 08:42:22 2009
New Revision: 4574

URL: http://svn.digium.com/svn-view/asterisk-gui?view=rev&rev=4574
Log:

- added documentation for existing session members


Modified:
    team/rbrindley/astman_revamp/config/js/session.js

Modified: team/rbrindley/astman_revamp/config/js/session.js
URL: http://svn.digium.com/svn-view/asterisk-gui/team/rbrindley/astman_revamp/config/js/session.js?view=diff&rev=4574&r1=4573&r2=4574
==============================================================================
--- team/rbrindley/astman_revamp/config/js/session.js (original)
+++ team/rbrindley/astman_revamp/config/js/session.js Thu Mar  5 08:42:22 2009
@@ -25,15 +25,18 @@
  * This is the object that will globally hold all the session variables.
  */
 var session = {
-	debug_log: [],
-	log: false,
+	debug_log: [], /**< array holding all the logging */
+	log: false, /**< boolean toggling logging */
+	/**
+	 * Logging Modes.
+	 */
 	log_modes: {
-		ajax: true,
-		console: true,
-		debug: true,
-		error: true,
-		info: true,
-		warn: true
+		ajax: true, /**< toggle ajax logs */
+		console: true, /**< toggle console logs */
+		debug: true, /**< toggle debug logs */
+		error: true, /**< toggle error logs */
+		info: true, /**< toggle info logs */
+		warn: true /**< toggle warning logs */
 	}
 };
 




More information about the asterisk-gui-commits mailing list