# HG changeset patch
# User hamidouk
# Date 1318413299 -7200
# Node ID 13013b9452afa37010c12dabeee3f1b3bc95ccd0
# Parent 6a8cae20f190a5319e7917a5cf769e76c20c6945
Added a new file to the build, widgets.js, to contain widget classes.
diff -r 6a8cae20f190 -r 13013b9452af sbin/build/client.xml
--- a/sbin/build/client.xml Wed Oct 12 11:54:26 2011 +0200
+++ b/sbin/build/client.xml Wed Oct 12 11:54:59 2011 +0200
@@ -73,7 +73,7 @@
-
+
diff -r 6a8cae20f190 -r 13013b9452af src/js/widgets.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/js/widgets.js Wed Oct 12 11:54:59 2011 +0200
@@ -0,0 +1,9 @@
+/* the widget classes and definitions */
+
+IriSP.Widget = function(Popcorn) {
+ this.Popcorn = Popcorn;
+};
+
+IriSP.Widget.prototype.draw = function() {
+ /* implemented by "sub-classes" */
+};