summaryrefslogtreecommitdiffstats
path: root/js/directive/NewsPlayOne.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-03-30 16:20:05 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-03-30 16:20:05 +0200
commitee3d2332ec97487893ae5f1f46b599c550b25eb6 (patch)
treee5a46f12fc027e3deb7c9436160595bb60d99356 /js/directive/NewsPlayOne.js
parent026ccbc8875fc78b665dec95c308afe8a3c5899e (diff)
fix #156
Diffstat (limited to 'js/directive/NewsPlayOne.js')
-rw-r--r--js/directive/NewsPlayOne.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/js/directive/NewsPlayOne.js b/js/directive/NewsPlayOne.js
new file mode 100644
index 000000000..860101668
--- /dev/null
+++ b/js/directive/NewsPlayOne.js
@@ -0,0 +1,30 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2014
+ */
+
+/**
+ * Pause playback on elements other than the current one
+ */
+app.directive('newsPlayOne', function ($rootScope) {
+ 'use strict';
+ return {
+ restrict: 'A',
+ link: function (scope, elem) {
+ elem.on('play', function () {
+ $rootScope.$broadcast('playing', elem);
+ });
+
+ $rootScope.$on('playing', function (scope, args) {
+ if (args[0] !== elem[0]) {
+ elem[0].pause();
+ }
+ });
+ }
+ };
+}); \ No newline at end of file