dmodel icon indicating copy to clipboard operation
dmodel copied to clipboard

fix nested property values

Open neonstalwart opened this issue 11 years ago • 0 comments

i would write a test but i'm honestly stuck with how to get the tests to run. in lieu of tests, here's a snippet that shows the issue i'm trying to fix with this PR

m = new Model({ object: { foo: 'bar'  }  });
p = m.property('object', 'foo');
console.log(p._get()); // should be 'bar'

neonstalwart avatar Dec 17 '14 23:12 neonstalwart