rbrindley: branch rbrindley/astman_revamp r4573 - in /team/rbrindley/astman_r...

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


Author: rbrindley
Date: Thu Mar  5 08:38:38 2009
New Revision: 4573

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

- moved the session var from index.html into js/session.js


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

Modified: team/rbrindley/astman_revamp/config/index.html
URL: http://svn.digium.com/svn-view/asterisk-gui/team/rbrindley/astman_revamp/config/index.html?view=diff&rev=4573&r1=4572&r2=4573
==============================================================================
--- team/rbrindley/astman_revamp/config/index.html (original)
+++ team/rbrindley/astman_revamp/config/index.html Thu Mar  5 08:38:38 2009
@@ -325,19 +325,4 @@
 		<span class='button_t1' onclick='onLogInFunctions.makePings.makeRetryPing();'> Retry </span>
 	<div>
 </div>
-
-<script>
-	var session = {
-		debug_log: [],
-		log: false,
-		log_modes: {
-			ajax: true,
-			console: true,
-			debug: true,
-			error: true,
-			info: true,
-			warn: true
-		}
-	};
-</script>
 </body>

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=4573&r1=4572&r2=4573
==============================================================================
--- team/rbrindley/astman_revamp/config/js/session.js (original)
+++ team/rbrindley/astman_revamp/config/js/session.js Thu Mar  5 08:38:38 2009
@@ -19,3 +19,21 @@
  * at the top of the source tree.
  *
  */
+
+/**
+ * Session Variables.
+ * This is the object that will globally hold all the session variables.
+ */
+var session = {
+	debug_log: [],
+	log: false,
+	log_modes: {
+		ajax: true,
+		console: true,
+		debug: true,
+		error: true,
+		info: true,
+		warn: true
+	}
+};
+




More information about the asterisk-gui-commits mailing list