diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
index e311faf..8eca49f 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
@@ -119,6 +119,8 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
//annotation tool custom events
$rootScope.ShowAnnotationWindow = function () {
//7904
+
+ $("#OnIdentify").addClass("annotationtoolbartab");
$("#annotationToolBarOptions").addClass("active");
$("#annotationButton").addClass("active");
@@ -131,6 +133,8 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
$rootScope.CloseAnnotationTool = function () {
console.log('close');
+ $("#OnIdentify").removeClass("annotationtoolbartab");
+ $("#DrawMode").removeClass("annotationtoolbartab");
$('.btnCursor').removeClass('activebtncolor');
$("#annotationButton").removeClass("active");
$("#annotationToolBarOptions").removeClass("active");
@@ -143,6 +147,9 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
}
$rootScope.OnIdentifyClick = function () {
+
+ $("#OnIdentify").addClass("annotationtoolbartab");
+ $("#DrawMode").removeClass("annotationtoolbartab");
// $rootScope.isIdetifyClicked = true;
// $rootScope.isDrawingToolSelected = false;
$("#canvasPaint").css("display", "none");
@@ -157,7 +164,8 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
$rootScope.DrawingMode = function () {
-
+ $("#OnIdentify").removeClass("annotationtoolbartab");
+ $("#DrawMode").addClass("annotationtoolbartab");
$('.btnCursor').addClass('activebtncolor');
$rootScope.switchCanvas();
$("#canvasPaint").css("display", "block");
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 dccdc59..4fe581a 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
@@ -857,4 +857,10 @@ cursor:pointer;
display:none;
}
/*#7904*/
-.dropdown-menu > li > a.active{background-color:#0095da;color:#fff;text-decoration:none;}
\ No newline at end of file
+.dropdown-menu > li > a.active{background-color:#0095da;color:#fff;text-decoration:none;}
+
+
+.annotationtoolbartab
+ {
+ background:#626c34 !important;
+}
\ No newline at end of file