aboutsummaryrefslogtreecommitdiff
path: root/js/panels/presets/presets-panel.js
diff options
context:
space:
mode:
authorJohn Mayhew2012-02-16 17:25:30 -0800
committerJohn Mayhew2012-02-16 17:25:30 -0800
commit9bba936942dcc6cbda66d72110548e29866285d3 (patch)
tree97d5a13e7e7ea6723ee91cab68f1f4e8fc427a88 /js/panels/presets/presets-panel.js
parenta66bf533daccc3b850b7af12d7fd335fbd406beb (diff)
parentf0590347bc5fe810838b14a6035fbef35b5616c5 (diff)
downloadninja-9bba936942dcc6cbda66d72110548e29866285d3.tar.gz
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into WorkingBranch
Diffstat (limited to 'js/panels/presets/presets-panel.js')
-rw-r--r--js/panels/presets/presets-panel.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/panels/presets/presets-panel.js b/js/panels/presets/presets-panel.js
new file mode 100644
index 00000000..091c5cb9
--- /dev/null
+++ b/js/panels/presets/presets-panel.js
@@ -0,0 +1,15 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7var Montage = require("montage/core/core").Montage;
8var PanelBase = require("js/panels/PanelBase").PanelBase;
9var Content = require("js/panels/presets/content.reel").content;
10
11exports.PresetsPanel = Montage.create(PanelBase, {
12 panelName : { value: "Presets" },
13 minHeight : { value: 200 },
14 content : { value: Content }
15}); \ No newline at end of file