Commit fbc144985b6404e560c02622aa81e8a310e4013b
1 parent
a5d00ea8
this is for bug #8327 again
Showing
2 changed files
with
8 additions
and
8 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... | ... | @@ -120,7 +120,7 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location", |
120 | 120 | $rootScope.ShowAnnotationWindow = function () { |
121 | 121 | //7904 |
122 | 122 | |
123 | - $("#OnIdentify").addClass("annotationteb"); | |
123 | + $("#OnIdentify").addClass("annotationtoolbartab"); | |
124 | 124 | $("#annotationToolBarOptions").addClass("active"); |
125 | 125 | $("#annotationButton").addClass("active"); |
126 | 126 | |
... | ... | @@ -133,8 +133,8 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location", |
133 | 133 | |
134 | 134 | $rootScope.CloseAnnotationTool = function () { |
135 | 135 | console.log('close'); |
136 | - $("#OnIdentify").removeClass("annotationteb"); | |
137 | - $("#DrawMode").removeClass("annotationteb"); | |
136 | + $("#OnIdentify").removeClass("annotationtoolbartab"); | |
137 | + $("#DrawMode").removeClass("annotationtoolbartab"); | |
138 | 138 | $('.btnCursor').removeClass('activebtncolor'); |
139 | 139 | $("#annotationButton").removeClass("active"); |
140 | 140 | $("#annotationToolBarOptions").removeClass("active"); |
... | ... | @@ -148,8 +148,8 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location", |
148 | 148 | |
149 | 149 | $rootScope.OnIdentifyClick = function () { |
150 | 150 | |
151 | - $("#OnIdentify").addClass("annotationteb"); | |
152 | - $("#DrawMode").removeClass("annotationteb"); | |
151 | + $("#OnIdentify").addClass("annotationtoolbartab"); | |
152 | + $("#DrawMode").removeClass("annotationtoolbartab"); | |
153 | 153 | // $rootScope.isIdetifyClicked = true; |
154 | 154 | // $rootScope.isDrawingToolSelected = false; |
155 | 155 | $("#canvasPaint").css("display", "none"); |
... | ... | @@ -164,8 +164,8 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location", |
164 | 164 | |
165 | 165 | |
166 | 166 | $rootScope.DrawingMode = function () { |
167 | - $("#OnIdentify").removeClass("annotationteb"); | |
168 | - $("#DrawMode").addClass("annotationteb"); | |
167 | + $("#OnIdentify").removeClass("annotationtoolbartab"); | |
168 | + $("#DrawMode").addClass("annotationtoolbartab"); | |
169 | 169 | $('.btnCursor').addClass('activebtncolor'); |
170 | 170 | $rootScope.switchCanvas(); |
171 | 171 | $("#canvasPaint").css("display", "block"); | ... | ... |
400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css
... | ... | @@ -860,7 +860,7 @@ cursor:pointer; |
860 | 860 | .dropdown-menu > li > a.active{background-color:#0095da;color:#fff;text-decoration:none;} |
861 | 861 | |
862 | 862 | |
863 | -.annotationteb | |
863 | +.annotationtoolbartab | |
864 | 864 | { |
865 | 865 | background:#626c34 !important; |
866 | 866 | } |
867 | 867 | \ No newline at end of file | ... | ... |