src/widgets/SpelSyncHtml.js
changeset 1013 392ddcd212d7
parent 1008 81243f1c7cff
child 1072 ac1eacb3aa33
--- a/src/widgets/SpelSyncHtml.js	Mon Sep 30 14:39:34 2013 +0200
+++ b/src/widgets/SpelSyncHtml.js	Tue Oct 01 15:41:46 2013 +0200
@@ -1,13 +1,13 @@
 IriSP.Widgets.SpelSyncHtml = function(player, config) {
     console.log("Calling IriSP.Widget's constructor from IriSP.HelloWorldWidget");
     IriSP.Widgets.Widget.call(this, player, config);
-}
+};
 
 IriSP.Widgets.SpelSyncHtml.prototype = new IriSP.Widgets.Widget();
 
 IriSP.Widgets.SpelSyncHtml.prototype.defaults = {
     src: "about:blank"
-}
+};
 
 IriSP.Widgets.SpelSyncHtml.prototype.template =
     '<div class="Ldt-SpelSyncHtml"><iframe src="{{src}}" {{#width}}width="{{width}}"{{/width}} {{#height}}height="{{height}}"{{/height}}</div>';
@@ -21,6 +21,6 @@
             if (a.content && a.content.data && a.content.data.ref_text) {
                 frame.src = basesrc + '#' + a.content.data.ref_text;
             }
-        })
-    })
-}
\ No newline at end of file
+        });
+    });
+};
\ No newline at end of file