Files
side-by-side/source/documents/scripts/controllers.js.coffee
T
Vit Brunner 8c777c5301 Switch to tabs for indentation
I got drunk, read the coffeescript style guide, and decided to use
spaces. Spaces for indentation is still as bad an idea as it ever were,
and this is not a coffeescript project - it's multilingual, hence using
coffeescript conventions is pointless.
2013-06-15 16:55:27 +01:00

8 lines
224 B
CoffeeScript

angular.module("sideBySide.controllers", [])
.controller "comparisonController", ['$scope', ($scope) ->
$scope.verses = [
{ section: 'first', versions: [ 'a', '1' ] }
{ section: 'second', versions: [ 'b', '2' ] }
]
]