src/widgets/HelloWorld.js
changeset 1013 392ddcd212d7
parent 875 43629caa77bc
child 1020 198c2b79f5e1
child 1072 ac1eacb3aa33
--- a/src/widgets/HelloWorld.js	Mon Sep 30 14:39:34 2013 +0200
+++ b/src/widgets/HelloWorld.js	Tue Oct 01 15:41:46 2013 +0200
@@ -7,13 +7,13 @@
 IriSP.Widgets.HelloWorld = function(player, config) {
     console.log("Calling IriSP.Widget's constructor from IriSP.HelloWorldWidget");
     IriSP.Widgets.Widget.call(this, player, config);
-}
+};
 
 IriSP.Widgets.HelloWorld.prototype = new IriSP.Widgets.Widget();
 
 IriSP.Widgets.HelloWorld.prototype.defaults = {
     text: "world"
-}
+};
 
 IriSP.Widgets.HelloWorld.prototype.template =
     '<div class="Ldt-HelloWorld"><p>{{l10n.Hello}} {{text}}</p><p>Looks like we have {{source.contents.annotation.length}} annotations in this feed</p></div>';
@@ -25,9 +25,9 @@
     "en" : {
         "Hello" : "Hello,"
     }
-}
+};
 
 IriSP.Widgets.HelloWorld.prototype.draw = function() {
     this.renderTemplate();
     console.log("HelloWorldWidget was drawn");
-}
\ No newline at end of file
+};
\ No newline at end of file