src/js/widgets/arrowWidget.js
branchpopcorn-port
changeset 299 d2005f747d5a
child 305 e8d05c3f77ed
equal deleted inserted replaced
298:eccdc619ede3 299:d2005f747d5a
       
     1 IriSP.ArrowWidget = function(Popcorn, config, Serializer) {
       
     2   IriSP.Widget.call(this, Popcorn, config, Serializer);
       
     3   
       
     4 };
       
     5 
       
     6 
       
     7 IriSP.ArrowWidget.prototype = new IriSP.Widget();
       
     8 
       
     9 IriSP.ArrowWidget.prototype.clear = function() {
       
    10 
       
    11 };
       
    12 
       
    13 IriSP.ArrowWidget.prototype.clearWidget = function() {
       
    14 };
       
    15 
       
    16 IriSP.ArrowWidget.prototype.draw = function() {
       
    17   var templ = Mustache.to_html(IriSP.arrowWidget_template, {});
       
    18   this.selector.append(templ);
       
    19 };