diff options
author | Eric Guzman | 2012-06-01 19:17:31 -0700 |
---|---|---|
committer | Eric Guzman | 2012-06-01 19:17:31 -0700 |
commit | 62d3628e1a00d56a055bfe23a5b21bac1afdf2b8 (patch) | |
tree | 1ad5f9d03d13d287f4b74cef1d3d82b4b4a15ad8 /js/controllers | |
parent | 9b238646d7c9d8ed1fde010cde5597f8787a8806 (diff) | |
download | ninja-62d3628e1a00d56a055bfe23a5b21bac1afdf2b8.tar.gz |
Objects Controller - Fix access to the oneway property
Diffstat (limited to 'js/controllers')
-rw-r--r-- | js/controllers/objects-controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/controllers/objects-controller.js b/js/controllers/objects-controller.js index 59646083..2c9f2d66 100644 --- a/js/controllers/objects-controller.js +++ b/js/controllers/objects-controller.js | |||
@@ -99,7 +99,7 @@ var objectsController = exports.ObjectsController = Montage.create(Component, { | |||
99 | sourceObjectPropertyPath : property, | 99 | sourceObjectPropertyPath : property, |
100 | boundObject : descriptor.boundObject, | 100 | boundObject : descriptor.boundObject, |
101 | boundObjectPropertyPath : descriptor.boundObjectPropertyPath, | 101 | boundObjectPropertyPath : descriptor.boundObjectPropertyPath, |
102 | oneway : (descriptor.oneway || descriptor.oneway === null) ? true : false | 102 | oneway : descriptor.oneway |
103 | }; | 103 | }; |
104 | 104 | ||
105 | bindingsArray.push(bindingArgsObject); | 105 | bindingsArray.push(bindingArgsObject); |