diff --git a/source/scripts/app.js.coffee b/source/scripts/app.js.coffee index 9639ecb..980eac8 100644 --- a/source/scripts/app.js.coffee +++ b/source/scripts/app.js.coffee @@ -1,8 +1,7 @@ angular.module('sideBySide', ['sideBySide.controllers', 'ngRoute', 'ngSanitize']) .config [ '$routeProvider', ($routeProvider) -> - $routeProvider - .when '/:base?/:section?', { - templateUrl: 'partials/comparison.html' - controller: 'ComparisonController' - } + $routeProvider.when '/:base?/:section?', { + templateUrl: 'partials/comparison.html' + controller: 'ComparisonController' + } ]