Local function log() is now a simple alias to team.log(), rather than invoking it.
[mkws-moved-to-github.git] / src / mkws-widget.js
index d57620b..47fb6fd 100644 (file)
@@ -1,5 +1,5 @@
 // Factory function for widget objects.
-function widget($, team, type, node) {
+mkws.makeWidget = function($, team, type, node) {
   // Static register of attributes that do not contribute to config
   var ignoreAttrs = {
     id:1, 'class':1, style:1, name:1, action:1, type:1, size:1,
@@ -13,9 +13,7 @@ function widget($, team, type, node) {
     config: mkws.objectInheritingFrom(team.config)
   };
 
-  function log(s) {
-    team.log(s);
-  }
+  var log = team.log;
   that.log = log;
 
   that.toString = function() {
@@ -57,7 +55,7 @@ function widget($, team, type, node) {
     }
 
     var s = [];
-    s.push('<div class="mkws', type, ' mkwsTeam_', attrs._team, '"');
+    s.push('<div class="mkws', type, ' mkws-team-', attrs._team, '"');
     for (var name in attrs) {    
       if (name !== '_team')
         s.push(' ', name, '="', attrs[name], '"');
@@ -187,4 +185,4 @@ function widget($, team, type, node) {
   }
 
   return that;
-}
+};