diff options
Diffstat (limited to 'js/panels/objects.reel')
-rw-r--r-- | js/panels/objects.reel/objects.css | 0 | ||||
-rw-r--r-- | js/panels/objects.reel/objects.html | 27 | ||||
-rw-r--r-- | js/panels/objects.reel/objects.js | 7 |
3 files changed, 34 insertions, 0 deletions
diff --git a/js/panels/objects.reel/objects.css b/js/panels/objects.reel/objects.css new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/js/panels/objects.reel/objects.css | |||
diff --git a/js/panels/objects.reel/objects.html b/js/panels/objects.reel/objects.html new file mode 100644 index 00000000..b21097e7 --- /dev/null +++ b/js/panels/objects.reel/objects.html | |||
@@ -0,0 +1,27 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html lang="en"> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" href="objects.css" type="text/css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "owner": { | ||
14 | "prototype": "js/panels/objects.reel", | ||
15 | "properties": { | ||
16 | "element": {"#": "objects"} | ||
17 | } | ||
18 | } | ||
19 | |||
20 | } | ||
21 | </script> | ||
22 | </head> | ||
23 | <body> | ||
24 | <div data-montage-id="objects"> | ||
25 | </div> | ||
26 | </body> | ||
27 | </html> \ No newline at end of file | ||
diff --git a/js/panels/objects.reel/objects.js b/js/panels/objects.reel/objects.js new file mode 100644 index 00000000..c1451cc0 --- /dev/null +++ b/js/panels/objects.reel/objects.js | |||
@@ -0,0 +1,7 @@ | |||
1 | var Montage = require("montage/core/core").Montage, | ||
2 | PanelBase = require("js/panels/panelbase").PanelBase; | ||
3 | //////////////////////////////////////////////////////////////////////// | ||
4 | //Exporting as ColorPanel | ||
5 | exports.ObjectsPanel = Montage.create(PanelBase, { | ||
6 | |||
7 | }); \ No newline at end of file | ||