src/js/widgets.js
author hamidouk
Wed, 12 Oct 2011 11:54:59 +0200
branchpopcorn-port
changeset 66 13013b9452af
child 74 d7a7d7216371
permissions -rw-r--r--
Added a new file to the build, widgets.js, to contain widget classes.

/* the widget classes and definitions */

IriSP.Widget = function(Popcorn) {
  this.Popcorn = Popcorn;
};

IriSP.Widget.prototype.draw = function() {
  /* implemented by "sub-classes" */  
};