Skip to content

Commit

Permalink
Merge pull request #243 from Soundnode/improvements-fixes
Browse files Browse the repository at this point in the history
fix stream issue since Soundcloud updated the data from the API.
  • Loading branch information
weblancaster committed May 21, 2015
2 parents e723fda + 9d1d131 commit 53ec868
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 27 deletions.
1 change: 0 additions & 1 deletion app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ <h4 id="playerUser" class="player_user"></h4>
<script src="public/js/common/songDirective.js"></script>
<script src="public/js/common/openExternalLinkDirective.js"></script>
<script src="public/js/common/favoriteSongDirective.js"></script>
<!--<script src="public/js/common/downloadSongDirective.js"></script>-->
<script src="public/js/common/showMoreDirective.js"></script>
<script src="public/js/common/tracksDirective.js"></script>
<script src="public/js/common/playlistDirective.js"></script>
Expand Down
25 changes: 0 additions & 25 deletions app/public/js/common/downloadSongDirective.js

This file was deleted.

2 changes: 1 addition & 1 deletion app/views/stream/stream.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h1> {{ title }}</h1>
infinite-scroll-immediate-check='false' >

<li class="songList_item" ng-repeat="data in data"
ng-if="data.type == 'track' && data.origin.streamable" >
ng-if="data.type == 'track' || data.type == 'track-repost' && data.origin.streamable" >

<tracks data="data.origin"/>

Expand Down

0 comments on commit 53ec868

Please sign in to comment.