From 18f687974273b5ed7374ca5ae440c797064c5d0f Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Tue, 7 Feb 2012 13:35:27 -0800 Subject: Presets Panel - Initial commit with panel content --- js/panels/presets/presets-panel.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 js/panels/presets/presets-panel.js (limited to 'js/panels/presets/presets-panel.js') 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 @@ +/* +This file contains proprietary software owned by Motorola Mobility, Inc.
+No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
+(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. +
*/ + +var Montage = require("montage/core/core").Montage; +var PanelBase = require("js/panels/PanelBase").PanelBase; +var Content = require("js/panels/presets/content.reel").content; + +exports.PresetsPanel = Montage.create(PanelBase, { + panelName : { value: "Presets" }, + minHeight : { value: 200 }, + content : { value: Content } +}); \ No newline at end of file -- cgit v1.2.3