src/js/widgets/arrowWidget.js
author hamidouk
Wed, 23 Nov 2011 11:13:21 +0100
branchpopcorn-port
changeset 304 a938013fc6ea
parent 299 d2005f747d5a
child 305 e8d05c3f77ed
permissions -rw-r--r--
updated the segmentsWidget to throw a message whenever it's clicked to indicate where the arrowWidget should position itself.

IriSP.ArrowWidget = function(Popcorn, config, Serializer) {
  IriSP.Widget.call(this, Popcorn, config, Serializer);
  
};


IriSP.ArrowWidget.prototype = new IriSP.Widget();

IriSP.ArrowWidget.prototype.clear = function() {

};

IriSP.ArrowWidget.prototype.clearWidget = function() {
};

IriSP.ArrowWidget.prototype.draw = function() {
  var templ = Mustache.to_html(IriSP.arrowWidget_template, {});
  this.selector.append(templ);
};