Commit 7481a0326e113ded95c2995d0db5094568fac5d2

Authored by unknown
1 parent 1b7688b9

this is erase function

Signed-off-by: unknown <Ayush.Jain@NOIAYJAALL.indiaebix.com>
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);
... ...