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

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Mar 3 08:49:48 CST 2009


Author: rbrindley
Date: Tue Mar  3 08:49:45 2009
New Revision: 4557

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

- fixed some whitespaces


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

Modified: team/rbrindley/astman_revamp/config/js/log.js
URL: http://svn.digium.com/svn-view/asterisk-gui/team/rbrindley/astman_revamp/config/js/log.js?view=diff&rev=4557&r1=4556&r2=4557
==============================================================================
--- team/rbrindley/astman_revamp/config/js/log.js (original)
+++ team/rbrindley/astman_revamp/config/js/log.js Tue Mar  3 08:49:45 2009
@@ -40,7 +40,7 @@
  * Log as ajax.
  * @param msg The message.
  */
-log.ajax = function (msg) {
+log.ajax = function(msg) {
 	if (!msg || top.session.log_modes.ajax !== true) {
 		return true;
 	}
@@ -51,7 +51,7 @@
  * Log to the Console.
  * @param msg The message.
  */
-log.console = function (msg) {
+log.console = function(msg) {
 	if (!msg || top.session.log_modes.console !== true || window.console || window.console.firebug) {
 		return true;
 	}
@@ -70,7 +70,7 @@
  * Debug log.
  * @param msg The message.
  */
-log.debug = function (msg) {
+log.debug = function(msg) {
 	if (!msg || top.session.log_modes.debug !== true) {
 		return true;
 	}
@@ -82,7 +82,7 @@
  * @param msg The message.
  * @param color The HTML hexademical color code.
  */
-log.doLog = function () {
+log.doLog = function() {
 	if (!top.session.log) {
 		return true;
 	}
@@ -105,7 +105,7 @@
  * Log as Error.
  * @param msg The message.
  */
-log.error = function (msg) {
+log.error = function(msg) {
 	if (!msg || top.session.log_modes.error !== true) {
 		return true;
 	}
@@ -116,7 +116,7 @@
  * Log as Info.
  * @param msg The message.
  */
-log.info = function (msg) {
+log.info = function(msg) {
 	if (!msg || top.session.log_modes.info !== true) {
 		return true;
 	}
@@ -127,7 +127,7 @@
  * Log as Warning.
  * @param msg The message.
  */
-log.warn = function (msg) {
+log.warn = function(msg) {
 	if (!msg || top.session.log_modes.warn !== true) {
 		return true;
 	}




More information about the asterisk-gui-commits mailing list