2015-08-15 06:20:05 +02:00
|
|
|
# Pony.fm - A community for pony fan music.
|
2018-04-21 06:25:36 +02:00
|
|
|
# Copyright (C) 2016 Feld0
|
2015-08-15 06:20:05 +02:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
window.pfm.preloaders['track-show'] = [
|
|
|
|
'tracks', '$state', 'playlists'
|
|
|
|
(tracks, $state, playlists) ->
|
|
|
|
$.when.all [tracks.fetch $state.params.id, playlists.refreshOwned(true)]
|
|
|
|
]
|
|
|
|
|
2016-02-14 17:14:30 +01:00
|
|
|
module.exports = angular.module('ponyfm').controller "track-show", [
|
2016-05-21 20:29:07 +02:00
|
|
|
'$scope', 'tracks', '$state', 'playlists', 'auth', 'favourites', '$modal'
|
|
|
|
($scope, tracks, $state, playlists, auth, favourites, $modal) ->
|
2016-11-09 23:31:23 +01:00
|
|
|
$scope.formatPublishedDate = (track) ->
|
|
|
|
locale = window.navigator.userLanguage || window.navigator.language
|
|
|
|
moment.locale(locale)
|
|
|
|
return moment(track.published_at).format('LLL')
|
2015-08-15 06:20:05 +02:00
|
|
|
]
|