From 04ef4ffcfde762a0aead4a7b702f3c019fdbeb69 Mon Sep 17 00:00:00 2001
From: Eric Guzman
Date: Thu, 31 May 2012 21:57:22 -0700
Subject: Binding Panel - Developed panel components.
---
.../binding/binding-item.reel/binding-item.css | 13 ++++++++
.../binding/binding-item.reel/binding-item.html | 37 ++++++++++++++++++++++
.../binding/binding-item.reel/binding-item.js | 26 +++++++++++++++
3 files changed, 76 insertions(+)
create mode 100644 js/panels/binding/binding-item.reel/binding-item.css
create mode 100644 js/panels/binding/binding-item.reel/binding-item.html
create mode 100644 js/panels/binding/binding-item.reel/binding-item.js
(limited to 'js/panels/binding')
diff --git a/js/panels/binding/binding-item.reel/binding-item.css b/js/panels/binding/binding-item.reel/binding-item.css
new file mode 100644
index 00000000..dc90f162
--- /dev/null
+++ b/js/panels/binding/binding-item.reel/binding-item.css
@@ -0,0 +1,13 @@
+/*
+ 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.
+ */
+
+.binding-item {
+ color: #FFF;
+ margin: 0 8px;
+ padding: 3px;
+ border-bottom: 1px solid #FFF;
+ list-style-type: none;
+}
\ No newline at end of file
diff --git a/js/panels/binding/binding-item.reel/binding-item.html b/js/panels/binding/binding-item.reel/binding-item.html
new file mode 100644
index 00000000..23182345
--- /dev/null
+++ b/js/panels/binding/binding-item.reel/binding-item.html
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/js/panels/binding/binding-item.reel/binding-item.js b/js/panels/binding/binding-item.reel/binding-item.js
new file mode 100644
index 00000000..9365da65
--- /dev/null
+++ b/js/panels/binding/binding-item.reel/binding-item.js
@@ -0,0 +1,26 @@
+/*
+ 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,
+ Component = require("montage/ui/component").Component;
+
+
+exports.BindingItem = Montage.create(Component, {
+
+ sourceObjectPropertyPath : { value: null },
+
+ templateDidLoad : {
+ value: function() {
+ console.log("loaded binding item");
+ }
+ },
+
+ prepareForDraw: {
+ value: function() {
+ console.log("preparing to draw binding item");
+ }
+ }
+});
\ No newline at end of file
--
cgit v1.2.3