aboutsummaryrefslogtreecommitdiffstats
path: root/app/punch-outs.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/punch-outs.js')
-rw-r--r--app/punch-outs.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/punch-outs.js b/app/punch-outs.js
new file mode 100644
index 0000000..b6cd186
--- /dev/null
+++ b/app/punch-outs.js
@@ -0,0 +1,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(); });