Files
lunchrun.me/assets/linker/js/controllers/body-controller.coffee
Ben Ramey 0943e32710 Footer
2014-03-26 17:19:06 -05:00

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'
]