summaryrefslogtreecommitdiffstats
path: root/js/directive/NewsAddFeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/directive/NewsAddFeed.js')
-rw-r--r--js/directive/NewsAddFeed.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/js/directive/NewsAddFeed.js b/js/directive/NewsAddFeed.js
new file mode 100644
index 000000000..b4b615b71
--- /dev/null
+++ b/js/directive/NewsAddFeed.js
@@ -0,0 +1,32 @@
+/**
+ * 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
+ */
+app.directive('newsAddFeed', function ($rootScope, $timeout) {
+ 'use strict';
+
+ return {
+ restrict: 'A',
+ link: function (scope, elem) {
+ $rootScope.$on('addFeed', function (_, url) {
+
+ $timeout(function () {
+ if (elem.is(':animated')) {
+ elem.stop(true, true);
+ elem.show();
+ } else if (!elem.is(':visible')) {
+ elem.slideDown();
+ }
+ elem.find('[ng-model="Navigation.feed.url"]').focus();
+ });
+
+ scope.Navigation.feed.url = url;
+ });
+ }
+ };
+}); \ No newline at end of file