diff options
Diffstat (limited to 'js/panels/binding.reel/binding.js')
-rw-r--r-- | js/panels/binding.reel/binding.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/panels/binding.reel/binding.js b/js/panels/binding.reel/binding.js new file mode 100644 index 00000000..e9676c4d --- /dev/null +++ b/js/panels/binding.reel/binding.js | |||
@@ -0,0 +1,11 @@ | |||
1 | var Montage = require("montage/core/core").Montage, | ||
2 | PanelBase = require("js/panels/panelbase").PanelBase; | ||
3 | //////////////////////////////////////////////////////////////////////// | ||
4 | //Exporting as ColorPanel | ||
5 | exports.BindingPanel = Montage.create(PanelBase, { | ||
6 | //////////////////////////////////////////////////////////////////// | ||
7 | //Panel Configuration | ||
8 | panelName: { | ||
9 | value: "Color" | ||
10 | } | ||
11 | }); \ No newline at end of file | ||