aboutsummaryrefslogtreecommitdiffstats
path: root/app/punch-outs.js
blob: b6cd1866757deeead57837ef0a70f0d8a1e3d722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var DcaeApp = function(){

};

DcaeApp.prototype = {
    render: function render(parameters, element) {
        //parameters.options;
        //parameters.onEvent;
        alert("render");
    },
    unmount: function unmount(element){
        alert("unmount " + element);
    }
};

PunchOutRegistry.register('dcaeApp', function() { new DcaeApp(); });