src/js/widgets/helloWorldWidget.js
author hamidouk
Tue, 24 Jan 2012 17:29:18 +0100
branchembed-playerapi-rewrite
changeset 700 c6933b86acba
parent 661 48c1beea7b1c
child 766 aa26ddaf2556
permissions -rw-r--r--
switched build order to get IriSP.wrap available for functions in pop.js

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

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

IriSP.HelloWorldWidget.prototype.draw = function() {
    this.selector
        .html('Hello, world')
        .css({
            "text-align" : "center",
            "padding": "10px 0",
            "font-size" : "14px",
        });
        
    console.log(this);
}