diff --git a/public/templates/albums/list.html b/public/templates/albums/list.html
index ac1fb334..934297d0 100644
--- a/public/templates/albums/list.html
+++ b/public/templates/albums/list.html
@@ -1,3 +1,3 @@
Pony.fm was created to organize the My Little Pony community's fan music.
- The project is maintained by Poniverse, an
+ The project is maintained by Poniverse, an
organization devoted to building and operating fan sites for the pony community.
Open-source credits
diff --git a/resources/assets/scripts/app/controllers/account-track.coffee b/resources/assets/scripts/app/controllers/account-track.coffee
index d0065d82..1e3c3f7c 100644
--- a/resources/assets/scripts/app/controllers/account-track.coffee
+++ b/resources/assets/scripts/app/controllers/account-track.coffee
@@ -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
diff --git a/resources/assets/scripts/app/directives/src-loader.coffee b/resources/assets/scripts/app/directives/src-loader.coffee
index b244f90d..ebcd595a 100644
--- a/resources/assets/scripts/app/directives/src-loader.coffee
+++ b/resources/assets/scripts/app/directives/src-loader.coffee
@@ -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
\ No newline at end of file
+ scope.$watch attrs.pfmSrcLoader, update
diff --git a/resources/assets/scripts/base/soundmanager2-nodebug.js b/resources/assets/scripts/base/soundmanager2-nodebug.js
index 8d7c2472..8c5403ab 100644
--- a/resources/assets/scripts/base/soundmanager2-nodebug.js
+++ b/resources/assets/scripts/base/soundmanager2-nodebug.js
@@ -2640,4 +2640,4 @@ if (window.SM2_DEFER === undefined || !SM2_DEFER) {
}
window.SoundManager = SoundManager;
window.soundManager = soundManager;
-}(window));
\ No newline at end of file
+}(window));