Commit 0a82cb9d0e622c5ce95b163803fd4ac8b9c07f61
Merge branch 'erasedFunctionalityIssue' into Develop
Showing
2 changed files
with
13 additions
and
3 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... | ... | @@ -411,15 +411,25 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic |
411 | 411 | if (($location.url() == "/da-body-view")) { |
412 | 412 | $rootScope.disableMenuannotation = " "; |
413 | 413 | $rootScope.disableMenuoption = " "; |
414 | + $("#annotationToolBarOptions").removeClass("disableSubMenu"); | |
414 | 415 | |
415 | 416 | } |
416 | - else if (($location.url() == "/clinical-illustrations-detail") || ($location.url() == "/clinical-animations-detail")) { | |
417 | + else if ($location.url() == "/clinical-illustrations-detail") | |
418 | + { | |
417 | 419 | $rootScope.disableMenuannotation = " "; |
418 | 420 | $rootScope.disableMenuoption = " "; |
419 | 421 | $rootScope.disableSubMenu = "disableSubMenu"; |
422 | + $("#annotationToolBarOptions").removeClass("disableSubMenu"); | |
423 | + } | |
424 | + else if($location.url() == "/clinical-animations-detail") | |
425 | + { | |
426 | + $rootScope.disableMenuannotation = "disableMenuannotation"; | |
427 | + $rootScope.disableMenuoption = " "; | |
428 | + $rootScope.disableSubMenu = "disableSubMenu"; | |
429 | + $("#annotationToolBarOptions").addClass("disableSubMenu"); | |
420 | 430 | } |
421 | 431 | else { |
422 | - | |
432 | + $("#annotationToolBarOptions").removeClass("disableSubMenu"); | |
423 | 433 | $rootScope.disableMenuannotation = "disableMenuannotation"; |
424 | 434 | $rootScope.disableMenuoption = "disableMenuoption"; |
425 | 435 | $rootScope.disableSubMenu = ""; | ... | ... |
400-SOURCECODE/AIAHTML5.Web/index.html
... | ... | @@ -1361,7 +1361,7 @@ |
1361 | 1361 | $("#slider-range-min-2").slider("value", parseInt(brushSizevalue)); |
1362 | 1362 | }); |
1363 | 1363 | $("#btnBrushSizeIncrement").click(function () { |
1364 | - abc(); | |
1364 | + onBrushSizeChange(); | |
1365 | 1365 | var brushIncrementVar = $("#btnBrushSize").val(); |
1366 | 1366 | if (brushIncrementVar >= 60) { |
1367 | 1367 | $("#slider-range-min-2").slider("value", 60); | ... | ... |