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" */ +};