Log Message:
-----------
Corrected typo
Applet.pm ww_applet_support.js AppletObject.pl and math/system.template should soon be up to date and synchronized
Modified Files:
--------------
webwork2/htdocs/js:
ww_applet_support.js
Revision Data
-------------
Index: ww_applet_support.js
===================================================================
RCS file: /webwork/cvs/system/webwork2/htdocs/js/ww_applet_support.js,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lhtdocs/js/ww_applet_support.js -Lhtdocs/js/ww_applet_support.js -u -r1.2 -r1.3
--- htdocs/js/ww_applet_support.js
+++ htdocs/js/ww_applet_support.js
@@ -98,7 +98,7 @@
}
try{
- ww_applet.config;
+ ww_applet.config();
} catch(e) {
var msg = "Unable to configure " + appletName + " \n " +e;
@@ -223,8 +223,8 @@
var appletName = this.appletName;
var applet = getApplet(appletName);
var configAlias = this.configAlias;
- debug_add(" check " + appletName +"."+ config +"( " + this.base64_config + " ) to see if config function is defined: "
- );
+ debug_add(" Checking " + appletName +"."+ configAlias +"( " + this.base64_config + " ) to see if config function is defined. The data is"
+ + this.base64_config + " " + Base64.decode(this.base64_config) );
try {
if (( typeof(applet[configAlias]) == "function" ) ) {
debug_add(" CONFIGURING " + appletName);
|