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

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Thu Mar 12 14:08:08 CDT 2009


Author: rbrindley
Date: Thu Mar 12 14:08:04 2009
New Revision: 4632

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

- bug fix, now calling getProperties(obj[d])


Modified:
    team/rbrindley/astman_revamp/config/js/object.customs.js

Modified: team/rbrindley/astman_revamp/config/js/object.customs.js
URL: http://svn.digium.com/svn-view/asterisk-gui/team/rbrindley/astman_revamp/config/js/object.customs.js?view=diff&rev=4632&r1=4631&r2=4632
==============================================================================
--- team/rbrindley/astman_revamp/config/js/object.customs.js (original)
+++ team/rbrindley/astman_revamp/config/js/object.customs.js Thu Mar 12 14:08:04 2009
@@ -172,7 +172,7 @@
 			if (obj[d] instanceof Array) {
 				props.push(d + ': [' + obj[d].join(',') + ']');
 			} else {
-				props.push(d + ': ' + obj[d].getProperties());
+				props.push(d + ': ' + getProperties(obj[d]));
 			}
 		} else {
 			props.push(d + ': ' + obj[d]);




More information about the asterisk-gui-commits mailing list