Various widgets now use w.jqnode instead of $(w.node), and remaining uses of $(x...
[mkws-moved-to-github.git] / src / mkws-widget-categories.js
index aa25653..bec99f5 100644 (file)
@@ -29,7 +29,7 @@ mkws.registerWidgetType('Categories', function() {
         text.push("<option value='", id, "'>", name, "</option>");
       });
       text.push("</select>");
-      $(that.node).html(text.join(''));
+      that.jqnode.html(text.join(''));
     });
   });
 });