diff --git a/app/js/directives.js b/app/js/directives.js index 9c62c6f2..698535d2 100644 --- a/app/js/directives.js +++ b/app/js/directives.js @@ -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) { + } + }) diff --git a/app/partials/desktop/audio_player.html b/app/partials/desktop/audio_player.html new file mode 100644 index 00000000..0d81ab1b --- /dev/null +++ b/app/partials/desktop/audio_player.html @@ -0,0 +1,13 @@ +
+
+ +
+
+
+
+
+
+
+ +
+
\ No newline at end of file