Files
side-by-side/source/scripts/controllers/app.js.coffee
T
2015-01-06 10:47:38 +01:00

16 lines
338 B
CoffeeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
angular.module("sideBySide").controller "AppController",
['$scope', 'ngDialog', 'poems'
($scope, ngDialog, poems) ->
$scope.title = =>
sbs = 'Side By Side viewer'
if poems.config.title
poems.config.title + ' ' + sbs
else
sbs
$scope.showPage = (page) ->
ngDialog.open {
template: 'partials/' + page + '.html'
}
]