mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
Fixed an erroneous "null" HTTP request and made a link to Poniverse.net open in a new tab.
This commit is contained in:
parent
dc7c2786a8
commit
e55f6cc4fd
5 changed files with 12 additions and 10 deletions
|
@ -1,3 +1,3 @@
|
|||
<div class="stretch-to-bottom">
|
||||
<pfm-albums-list albums="albums"></pfm-albums-list>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
</div>
|
||||
<div class="modal-body">
|
||||
<p>Pony.fm was created to organize the <em>My Little Pony</em> community's fan music.
|
||||
The project is maintained by <a href="https://poniverse.net/">Poniverse</a>, an
|
||||
The project is maintained by <a href="https://poniverse.net/" target="_blank">Poniverse</a>, an
|
||||
organization devoted to building and operating fan sites for the pony community.</p>
|
||||
|
||||
<h2>Open-source credits</h2>
|
||||
|
|
|
@ -105,7 +105,6 @@ angular.module('ponyfm').controller "account-track", [
|
|||
xhr.send formData
|
||||
|
||||
tracks.getEdit($state.params.track_id).done (track) ->
|
||||
console.log (track.album_id);
|
||||
$scope.edit =
|
||||
id: track.id
|
||||
title: track.title
|
||||
|
|
|
@ -10,13 +10,16 @@ angular.module('ponyfm').directive 'pfmSrcLoader', () ->
|
|||
image.removeAttr 'pfm-src-loader'
|
||||
image.removeAttr 'pfm-src-size'
|
||||
|
||||
image[0].onload = ->
|
||||
element.attr 'src', val
|
||||
element.css {opacity: 0}
|
||||
element.animate {opacity: 1}, 250
|
||||
# If the given value is null, don't bother trying to
|
||||
# load something - it will result in an HTTP error.
|
||||
if val
|
||||
image[0].onload = ->
|
||||
element.attr 'src', val
|
||||
element.css {opacity: 0}
|
||||
element.animate {opacity: 1}, 250
|
||||
|
||||
image[0].src = val
|
||||
image[0].src = val
|
||||
|
||||
update scope.$eval attrs.pfmSrcLoader
|
||||
|
||||
scope.$watch attrs.pfmSrcLoader, update
|
||||
scope.$watch attrs.pfmSrcLoader, update
|
||||
|
|
|
@ -2640,4 +2640,4 @@ if (window.SM2_DEFER === undefined || !SM2_DEFER) {
|
|||
}
|
||||
window.SoundManager = SoundManager;
|
||||
window.soundManager = soundManager;
|
||||
}(window));
|
||||
}(window));
|
||||
|
|
Loading…
Reference in a new issue