aboutsummaryrefslogtreecommitdiff
path: root/js/panels/binding-panel.reel/binding-panel.js
blob: 03fe5723af69df1f72a909bfc058f54eabccc995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var Montage         = require("montage/core/core").Montage,
    Component       = require("montage/ui/component").Component;


exports.BindingPanel = Montage.create(Component, {

    prepareForDraw: {
        value: function() {
            console.log("test- objects");
        }
    }
});