aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js
blob: 1b0035cd3f67ea06cce6d55c45426adacc53bd8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var Montage = require("montage/core/core").Montage;
var Component = require("montage/ui/component").Component;

var PropertyTrack = exports.PropertyTrack = Montage.create(Component, {

    hasTemplate:{
        value: true
    },

    prepareForDraw:{
        value:function(){

        }
    }
});