component / reactive

Tiny reactive template engine
382 stars 48 forks source link

Add nested property setting #151

Open runningskull opened 10 years ago

runningskull commented 10 years ago

get()ing nested properties using dot-notation works, so it seems logical that it should work during set() as well. I needed it today, so implemented it.

It behaves like a mkdir -p, creating objects along the path if they don't exist. The other option is to throw in error in that case. I haven't thought through the pros/cons of each.

If this is a desired feature, I'll happily add some tests & polish it up.

EDIT: fixed a bug

defunctzombie commented 10 years ago

Any prior art with other view/bindings frameworks and what they do? This seems like a reasonable feature.

yanatan16 commented 10 years ago

:+1: lgtm

defunctzombie commented 10 years ago

Can merge after tests added.