Created
March 4, 2014 09:49
-
-
Save robinboehm/9343395 to your computer and use it in GitHub Desktop.
workshop 03/14 BookDetailCtrl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
angular.module('myApp') | |
.controller('BookDetailsCtrl', function ($scope) { | |
$scope.book = { | |
title : 'JavaScript für Enterprise-Entwickler', | |
subtitle : 'Professionell programmieren im Browser und auf dem Server', | |
isbn : '978-3-89864-728-1', | |
abstract : 'JavaScript ist längst nicht mehr nur für klassische Webprogrammierer interessant.', | |
numPages : 302, | |
author : 'Oliver Ochs', | |
publisher : { | |
name: 'dpunkt.verlag', | |
url : 'http://dpunkt.de/' | |
} | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment