Created
October 5, 2015 11:25
-
-
Save skounis/96d47ebed398322df406 to your computer and use it in GitHub Desktop.
Shoutcast Ionic Tutorial - Stream tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ion-view view-title="{{vm.info.title || 'Audio Stream'}}"> | |
<ion-content class="center" style=" | |
background: url({{vm.info.coverUrl || 'images/ionic.png'}}) center center; | |
background-size: cover;"> | |
<a class="button button-icon icon play-button-icon {{ vm.isPlaying ? 'ion-ios-pause' : 'ion-ios-play' }}" | |
ng-click="vm.togglePlay()"></a> | |
</ion-content> | |
</ion-view> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment