repair select-me link handler
authorBill Erickson <berick@esilibrary.com>
Thu, 1 May 2014 19:00:16 +0000 (15:00 -0400)
committerBill Erickson <berick@esilibrary.com>
Thu, 1 May 2014 19:00:16 +0000 (15:00 -0400)
Signed-off-by: Bill Erickson <berick@esilibrary.com>
Open-ILS/web/js/ui/default/staff/services/ui.js

index 0e7e3c4..c18080f 100644 (file)
@@ -55,7 +55,7 @@ function($timeout, $parse) {
 function($timeout, $parse) {
     return {
         link: function(scope, element, attrs) {
-            var model = $parse(attrs.focusMe);
+            var model = $parse(attrs.selectMe);
             scope.$watch(model, function(value) {
                 if(value === true) 
                     $timeout(function() {element[0].select()});