From 0044ac0ead9bfc82578f5ecb730725d03c2f03d5 Mon Sep 17 00:00:00 2001 From: Birendra Date: Thu, 23 Jul 2020 10:11:38 +0530 Subject: [PATCH] fixed click below line also in AA --- 400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js | 8 ++++---- 400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js | 2 +- 400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css | 22 ++++++++++++++++++++++ 3 files changed, 27 insertions(+), 5 deletions(-) diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js index b44383a..c919bd6 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js @@ -4030,7 +4030,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l } $scope.createSpeechBubbleBasedOnAnnotationLength = function (pointClicked, x, y, id) { - var sppechBubbleHTML = "
"; + var sppechBubbleHTML = "
"; //Issue #7286 :Undefined annotation should not appear for (var i = 0; i <= $scope.MultiLanguageAnnationArray.length - 1; i++) { var annotation = $scope.MultiLanguageAnnationArray[i]; @@ -4085,7 +4085,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l - var sppechBubbleDotHTML = '' + var sppechBubbleDotHTML = '
' + '' @@ -4177,7 +4177,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l } $scope.createSpeechBubbleBasedOnTransparencyWithCtrl = function (pointClicked_annotation, Exists_annotation, x, y, sub_id_annotation) { - var sppechBubbleHTML_annotation = "
"; + var sppechBubbleHTML_annotation = "
"; if ($scope.longest_annotationT1.length > $scope.longest_annotationT2.length) { if (Exists_annotation == 0) { $("#canvasDiv").append(sppechBubbleHTML_annotation); @@ -4272,7 +4272,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l $("#bord_annotation").remove(); $("#sppeachBubble_annotation").remove(); $("#dot_annotation").remove(); - var sppechBubbleDotHTML_annotation = '' + var sppechBubbleDotHTML_annotation = '
' + '' diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js index 0f411ef..31a2af4 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js @@ -1189,7 +1189,7 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou $scope.isAnnotationDivAlreadyPresent = true; } if ($scope.isAnnotationDivAlreadyPresent == true) { - var speechBubbleHTML = '' + var speechBubbleHTML = '
' + '
' + '' + '
' diff --git a/400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css b/400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css index 1a76ff6..627b43c 100644 --- a/400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css +++ b/400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css @@ -1319,4 +1319,26 @@ footer .browserIcons #emailToHelpBlock { display:none; +} + +.singleLineAnnotation { + position:absolute; + width:35px; + display:none; + border-top:2px solid #000; + transform:rotate(40deg); + -moz-transform:rotate(40deg); + -o-transform:rotate(40deg); + -ms-transform:rotate(40deg); + -webkit-transform:rotate(40deg); +} +.multiLineAnnotation { + position:absolute; + width:35px; + border-top:2px solid #000; + transform:rotate(40deg); + -moz-transform:rotate(40deg); + -o-transform:rotate(40deg); + -ms-transform:rotate(40deg); + -webkit-transform:rotate(40deg); } \ No newline at end of file -- libgit2 0.21.4