mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 21:47:59 +01:00
26 lines
469 B
CoffeeScript
26 lines
469 B
CoffeeScript
|
angular.module('ponyfm').factory('images', [
|
||
|
'$rootScope'
|
||
|
($rootScope) ->
|
||
|
def = null
|
||
|
self =
|
||
|
images: []
|
||
|
isLoading: true
|
||
|
refresh: (force) ->
|
||
|
return def if !force && def
|
||
|
def = new $.Deferred()
|
||
|
|
||
|
self.images = []
|
||
|
self.isLoading = true
|
||
|
|
||
|
$.getJSON('/api/web/images/owned').done (images) -> $rootScope.$apply ->
|
||
|
self.images = images
|
||
|
self.isLoading = false
|
||
|
def.resolve images
|
||
|
|
||
|
return def
|
||
|
|
||
|
self.refresh()
|
||
|
return self
|
||
|
])
|
||
|
|