Initial commit
This commit is contained in:
parent
62bea973ae
commit
8e090908be
@ -1842,3 +1842,14 @@ angular.module('myApp.directives', ['myApp.filters'])
|
||||
|
||||
}
|
||||
})
|
||||
|
||||
.directive('myAudioPlayer', function ($scope) {
|
||||
|
||||
return {
|
||||
link: link,
|
||||
templateUrl: templateUrl('audio_player')
|
||||
};
|
||||
|
||||
function link($scope, element, attrs) {
|
||||
}
|
||||
})
|
||||
|
13
app/partials/desktop/audio_player.html
Normal file
13
app/partials/desktop/audio_player.html
Normal file
@ -0,0 +1,13 @@
|
||||
<div class="audio_player_wrap">
|
||||
<div class="audio_player_button">
|
||||
<i class="icon audio_player_btn_icon"></i>
|
||||
</div>
|
||||
<div class="audio_player_title_wrap">
|
||||
<div class="audio_player_title"></div>
|
||||
<div class="audio_player_meta"></div>
|
||||
</div>
|
||||
<div class="audio_player_progress_wrap">
|
||||
<div class="audio_player_progress"></div>
|
||||
<i class="icon icon-player-track"></i>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user