mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-12-03 17:57:59 +01:00
8 lines
157 B
CoffeeScript
8 lines
157 B
CoffeeScript
angular.module('ponyfm').factory('lightbox', [
|
|
() ->
|
|
openDataUrl: (src) ->
|
|
$.colorbox
|
|
html: '<img src="' + src + '" />'
|
|
transition: 'none'
|
|
])
|
|
|