src/js/widgets/helloWorldWidget.js
branchnew-model
changeset 868 a525cc2214e7
parent 766 aa26ddaf2556
child 870 2c025db10a10
--- a/src/js/widgets/helloWorldWidget.js	Tue Apr 17 15:03:40 2012 +0200
+++ b/src/js/widgets/helloWorldWidget.js	Tue Apr 17 20:19:46 2012 +0200
@@ -6,12 +6,10 @@
 
 IriSP.HelloWorldWidget.prototype.draw = function() {
     this.selector
-        .html('Hello, world')
+        .append('Hello, world')
         .css({
             "text-align" : "center",
             "padding": "10px 0",
             "font-size" : "14px"
         });
-        
-    console.log(this);
 }