Skip to content

Instantly share code, notes, and snippets.

@skounis
Created October 5, 2015 11:25
Show Gist options
  • Save skounis/96d47ebed398322df406 to your computer and use it in GitHub Desktop.
Save skounis/96d47ebed398322df406 to your computer and use it in GitHub Desktop.
Shoutcast Ionic Tutorial - Stream tab
<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