From 8e090908be8a4207b2a5ad6bc8171eea20ba4784 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Mon, 22 Sep 2014 14:58:03 +0400 Subject: [PATCH] Initial commit --- app/js/directives.js | 11 +++++++++++ app/partials/desktop/audio_player.html | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 app/partials/desktop/audio_player.html 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