7 lines
245 B
CoffeeScript
7 lines
245 B
CoffeeScript
lunchControllers = angular.module 'lunchControllers'
|
|
|
|
lunchControllers.controller 'BodyCtrl', ['$scope', ($scope) ->
|
|
randomIndex = Math.floor((Math.random() * 10) % 5) + 1
|
|
$.backstretch '/images/backgrounds/bg_' + randomIndex + '.jpg'
|
|
]
|