src/js/modules.js
author hamidouk
Tue, 10 Jan 2012 16:09:30 +0100
branchpopcorn-port
changeset 605 e1a6f73038b4
parent 461 a9c5eeca190c
child 866 3bf7aa8216e5
permissions -rw-r--r--
made the listWidget redraw at every timeupdate event (added a small optimization though, to make sure that the widget isn't redrawn all the time).

/* modules are non-graphical entities, similar to widgets */

IriSP.Module = function(Popcorn, config, Serializer) {

  if (config === undefined || config === null) {
    config = {}
  }
  
  this._Popcorn = Popcorn;
  this._config = config;  
  this._serializer = Serializer;
};