Pony.fm/public/scripts/app/services/lightbox.coffee

14 lines
234 B
CoffeeScript
Raw Normal View History

2013-07-27 02:15:07 +02:00
angular.module('ponyfm').factory('lightbox', [
() ->
openDataUrl: (src) ->
$.colorbox
html: '<img src="' + src + '" />'
transition: 'none'
2013-07-27 05:00:45 +02:00
openImageUrl: (src) ->
$.colorbox
href: src
transition: 'none'
2013-07-27 02:15:07 +02:00
])