rbrindley: branch rbrindley/astman_revamp r4625 - /team/rbrindley/astman_reva...
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Thu Mar 12 11:28:24 CDT 2009
Author: rbrindley
Date: Thu Mar 12 11:28:21 2009
New Revision: 4625
URL: http://svn.digium.com/svn-view/asterisk-gui?view=rev&rev=4625
Log:
- converted log.js and astman2.js to use new getProperties(obj)
Modified:
team/rbrindley/astman_revamp/config/js/astman2.js
team/rbrindley/astman_revamp/config/js/log.js
Modified: team/rbrindley/astman_revamp/config/js/astman2.js
URL: http://svn.digium.com/svn-view/asterisk-gui/team/rbrindley/astman_revamp/config/js/astman2.js?view=diff&rev=4625&r1=4624&r2=4625
==============================================================================
--- team/rbrindley/astman_revamp/config/js/astman2.js (original)
+++ team/rbrindley/astman_revamp/config/js/astman2.js Thu Mar 12 11:28:21 2009
@@ -188,7 +188,7 @@
*/
astman.makeSyncRequest = function(params) {
if (top.session && top.session.debug_mode) {
- log.ajax('makeSyncRequest: AJAX Request: "' + params.getProperties() + '"');
+ log.ajax('makeSyncRequest: AJAX Request: "' + getProperties(param) + '"');
}
if (typeof params !== 'object') {
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=4625&r1=4624&r2=4625
==============================================================================
--- team/rbrindley/astman_revamp/config/js/log.js (original)
+++ team/rbrindley/astman_revamp/config/js/log.js Thu Mar 12 11:28:21 2009
@@ -88,7 +88,7 @@
}
if (typeof msg === 'object') {
- msg = 'OBJECT: ' + msg.getProperties();
+ msg = 'OBJECT: ' + getProperties(msg);
}
var now = new Date();
More information about the asterisk-gui-commits
mailing list