summaryrefslogtreecommitdiff
path: root/webapps/swat/source/class/swat/main/Module.js
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2007-01-14 02:54:41 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:40:43 -0500
commit332cc82dd2719f5a542d19066b8277bd6da57fbb (patch)
tree82492f5ab5943292f91d5f8bdd9b9778159db960 /webapps/swat/source/class/swat/main/Module.js
parent727748bee8da39daa0422e1a1a7cadb7044e28be (diff)
downloadsamba-332cc82dd2719f5a542d19066b8277bd6da57fbb.tar.gz
samba-332cc82dd2719f5a542d19066b8277bd6da57fbb.tar.bz2
samba-332cc82dd2719f5a542d19066b8277bd6da57fbb.zip
r20751: It's unlikely that even 1 in 1000 users of SWAT will be running IE. That not
withstanding, although many web sites ignore Gecko and work properly only when accessed via IE, we should strive to a higher standard. This check-in makes the Samba4 Web Application Framework work in IE as well. (This used to be commit fed131747a8a8f7c3ff2db1fe78d2e198b996073)
Diffstat (limited to 'webapps/swat/source/class/swat/main/Module.js')
-rw-r--r--webapps/swat/source/class/swat/main/Module.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapps/swat/source/class/swat/main/Module.js b/webapps/swat/source/class/swat/main/Module.js
index ef71eae625..1e5c6c9daf 100644
--- a/webapps/swat/source/class/swat/main/Module.js
+++ b/webapps/swat/source/class/swat/main/Module.js
@@ -30,7 +30,7 @@
* The name of the module being registered. This is the name that will
* appear in the Modules menu.
*
- * @param class {class}
+ * @param clazz {clazz}
* The class which contains the module implementation. That class must
* extend swat.main.AbstractModule and implement a singleton interface
* that provides a public method called initialAppear() which takes this
@@ -39,7 +39,7 @@
* the module.
*/
qx.OO.defineClass("swat.main.Module", qx.core.Object,
-function(moduleName, class)
+function(moduleName, clazz)
{
qx.core.Object.call(this);
@@ -52,7 +52,7 @@ function(moduleName, class)
this.name = moduleName;
// Save this class name
- this.class = class;
+ this.clazz = clazz;
// Add this new module to the module list.
swat.main.Module._list[moduleName] = this;