Published January 20th, 2015 by

If you need routes with trailing slashes to be recognized you do for example Reference: http://stackoverflow.com/questions/9600390/backbone-js-route-optional-parameter

Read More Small but handy tip on routers

Published January 18th, 2015 by

Random reading around JS today and I found this excellent resource that outlines typical patterns used in JS – definitely worth investigating & understanding. http://shichuan.github.io/javascript-patterns/

Read More Random JS reading

Published January 17th, 2015 by

Project going ok so far.. handy tip today is abut using underscore’s where on a collection checking against multiple attributes. e.g. below: Also doing a good bit around routing and…

Read More Progress on the webapp

Published January 3rd, 2015 by

Have said it before and will say it again.. the people on StackOverflow are AWESOME! Got a REALLY useful overview of the Event Driven Approach and how it applies to…

Read More Event driven approach

Published January 1st, 2015 by

Was doing some filtering on a collection and came across a problem where I wanted to have a variable as the key in ‘where’ but it wouldn’t take and I…

Read More Where filtering in backbone

Published January 1st, 2015 by

Quick but handy to know… when within a collections (and possibly views haven’t tried that yet) when you’re running a custom function as below on a click (checkit).. then you…

Read More Backbone events within collections