summaryrefslogtreecommitdiffstats
path: root/js-old/directive/NewsAutoFocus.js
diff options
context:
space:
mode:
Diffstat (limited to 'js-old/directive/NewsAutoFocus.js')
-rw-r--r--js-old/directive/NewsAutoFocus.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/js-old/directive/NewsAutoFocus.js b/js-old/directive/NewsAutoFocus.js
new file mode 100644
index 000000000..3b703934e
--- /dev/null
+++ b/js-old/directive/NewsAutoFocus.js
@@ -0,0 +1,24 @@
+/**
+ * Nextcloud - 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('newsAutoFocus', function ($timeout) {
+ 'use strict';
+ return function (scope, elem, attrs) {
+ var toFocus = elem;
+
+ if (attrs.newsAutoFocus) {
+ toFocus = $(attrs.newsAutoFocus);
+ }
+
+ // to combat $digest already in process error when route changes
+ $timeout(function () {
+ toFocus.focus();
+ }, 0);
+ };
+}); \ No newline at end of file