Commit 2197ca5aa02dc2fb1840e43cb05c4187a7cc0de2

Authored by Amrita Vishnoi
1 parent d29f7919

Against merge request #514

400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... ... @@ -1506,6 +1506,17 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
1506 1506 $("#borderWidthCanvasElement").css({ "pointer-events": "none" });
1507 1507 $("#outlineColor").css({ "pointer-events": "none" });
1508 1508 }
  1509 + if ((isfilloptionChecked == false) && (isOutlineOptionChecked == false)) {
  1510 + $(".setEnableDisableForEditShapeStyle").css({ "opacity": "1" });
  1511 + $("#borderWidthCanvasElement").css({ "pointer-events": "auto" });
  1512 + $("#outlineColor").css({ "pointer-events": "auto" });
  1513 + $(".enableDisableOpacity label").css({ "cursor": "pointer" });
  1514 + $(".enableDisableOpacity").css({ "opacity": "1" });
  1515 + $("#edit-slider-3").css({ "pointer-events": "auto" });
  1516 + $("#edit-slider-4").css({ "pointer-events": "auto" });
  1517 + $("#editstylebackgroundcolor").css({ "pointer-events": "auto" });
  1518 + document.getElementById("editStyleForm").reset();
  1519 + }
1509 1520 var previewBgColor = $("#shapeStyleDiv").css('background-color');
1510 1521 var previewBorderColor = $('#previewBorder').css('border-top-color');
1511 1522 var previewBorderWidth = $('#previewBorder').css('border-top-width');
... ...