Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Chris Southam
Chris Southam
1,823 Points

Upgrading AngularJS workshop to v1.2.17

Just found Jim Hoskins great workshop on AngularJS and didn't realise it was an older version until I opened up the code samples.
To upgrade from v1.0.3 to v1.2.17 you'll need to download it and include angular.js and angular-route.js into your index.html.

Then in app.js add 'ngRoute' to app module configuration
var app = angular.module('dabbble', ['ngRoute', 'dabbble.controllers', 'dabbble.filters', 'dabbble.services']);

Just adding this in case anyone wants to use Jim's great work with the latest AngularJS.