From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../angularjs/js/directives/todoFocus.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/angularjs/js/directives/todoFocus.js (limited to 'third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/angularjs/js/directives/todoFocus.js') diff --git a/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/angularjs/js/directives/todoFocus.js b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/angularjs/js/directives/todoFocus.js new file mode 100644 index 0000000000..e1e6c21c90 --- /dev/null +++ b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/angularjs/js/directives/todoFocus.js @@ -0,0 +1,20 @@ +/*global angular */ + +/** + * Directive that places focus on the element it is applied to when the + * expression it binds to evaluates to true + */ +angular.module('todomvc') + .directive('todoFocus', function todoFocus($timeout) { + 'use strict'; + + return function (scope, elem, attrs) { + scope.$watch(attrs.todoFocus, function (newVal) { + if (newVal) { + $timeout(function () { + elem[0].focus(); + }, 0, false); + } + }); + }; + }); -- cgit v1.2.3