UNPKG

todomvc

Version:

> Helping you select an MV\* framework

14 lines (12 loc) 295 B
/*global todomvc */ 'use strict'; /** * Directive that executes an expression when the element it is applied to loses focus */ todomvc.directive('todoBlur', function () { return function (scope, elem, attrs) { elem.bind('blur', function () { scope.$apply(attrs.todoBlur); }); }; });