mirror of
https://github.com/wassname/side-by-side.git
synced 2026-09-07 17:10:46 +08:00
Featuring: - middleman setup - dummy controller and index page - markdown reader and its qunit tests - travis integration
7 lines
229 B
CoffeeScript
7 lines
229 B
CoffeeScript
angular.module("sideBySide.controllers", [])
|
|
.controller "comparisonController", ($scope) ->
|
|
$scope.verses = [
|
|
{ section: 'first', versions: [ 'a', '1' ] }
|
|
{ section: 'second', versions: [ 'b', '2' ] }
|
|
]
|