aboutsummaryrefslogtreecommitdiff
path: root/js/components/tools-properties/pen-properties.reel/pen-properties.js
blob: b57f9a6fd3f792242a1026692a1e6772c8675a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
</copyright> */

var Montage = require("montage/core/core").Montage;
var ToolProperties = require("js/components/tools-properties/tool-properties").ToolProperties;

exports.PenProperties = Montage.create(ToolProperties, {
    strokeSize: {
        get: function() { return this._strokeSize; }
    }
});