Commit 2fe1213ba90736114119ca392dbd675042543e73
1 parent
9fc37106
added tooltip to resolve this
Showing
1 changed file
with
1 additions
and
1 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -6994,7 +6994,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
6994 | 6994 | |
6995 | 6995 | |
6996 | 6996 | for (var j = 0; j < $scope.VocabTermTxt.length; j++) { |
6997 | - var $el = $('<option ng-click=HighlightBodyOnListManagerSelection($event) id=' + $scope.VocabTermTxt[j]._ActualTermNumber + '>' + $scope.VocabTermTxt[j]._TermText + '</option>').appendTo('#termList') | |
6997 | + var $el = $('<option title ="'+ $scope.VocabTermTxt[j]._TermText+ '" ng-click=HighlightBodyOnListManagerSelection($event) id=' + $scope.VocabTermTxt[j]._ActualTermNumber + '>' + $scope.VocabTermTxt[j]._TermText + '</option>').appendTo('#termList') | |
6998 | 6998 | $compile($el)($scope); |
6999 | 6999 | |
7000 | 7000 | } | ... | ... |