From b5e4dd0ee565058c63d3df25fcebf352149e8158 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 31 May 2014 03:00:15 +0200 Subject: focus --- js/build/app.js | 14 ++++++++++++++ js/directive/NewsFocus.js | 22 ++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 js/directive/NewsFocus.js (limited to 'js') diff --git a/js/build/app.js b/js/build/app.js index 85ecaf878..81b92d4d0 100644 --- a/js/build/app.js +++ b/js/build/app.js @@ -1606,6 +1606,20 @@ var $__build_47_app__ = function () { }; } ]); + app.directive('newsFocus', [ + '$timeout', + function ($timeout) { + 'use strict'; + return function (scope, elem, attrs) { + elem.click(function () { + var toReadd = $(attrs.newsFocus); + $timeout(function () { + toReadd.focus(); + }, 500); + }); + }; + } + ]); app.directive('newsReadFile', function () { 'use strict'; return function (scope, elem, attr) { diff --git a/js/directive/NewsFocus.js b/js/directive/NewsFocus.js new file mode 100644 index 000000000..3ab2a85aa --- /dev/null +++ b/js/directive/NewsFocus.js @@ -0,0 +1,22 @@ +/** + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Bernhard Posselt + * @copyright Bernhard Posselt 2014 + */ +app.directive('newsFocus', ($timeout) => { + 'use strict'; + + return (scope, elem, attrs) => { + elem.click(() => { + let toReadd = $(attrs.newsFocus); + $timeout(() => { + toReadd.focus(); + }, 500); + }); + }; + +}); \ No newline at end of file -- cgit v1.2.3