' +
'
' + $scope.clickedCISummary + '
' +
diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
index 032f92f..8501916 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
@@ -457,7 +457,8 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
}
$rootScope.EraseDrawing = function () {
$rootScope.switchCanvas();
- $rootScope.isEraseToolSelected = true;
+ $rootScope.isEraseToolSelected = true;
+ //$rootScope.switchCanvasToPaintCanvas();
}
@@ -1120,6 +1121,8 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
// var y = event.clientY;
$rootScope.offsetX1 = 0;
$rootScope.offsetY1 = 0;
+ //alert($location.path());
+
var canvasDiv = document.getElementById('canvasDiv');
var verticalScrollPosition = canvasDiv.scrollTop;
var horizontlScrollPosition = canvasDiv.scrollLeft;
@@ -1180,30 +1183,30 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
break;
case "Line":
$rootScope.LineNumber = $rootScope.ObjectIndex++;
- $rootScope.isLinePreviewCompleted = true;
+ // $rootScope.isLinePreviewCompleted = true;
$rootScope.DrawLineOnModuleItem('#canvas', $rootScope.LineNumber, $rootScope.shapestyleborderColor, $rootScope.shapestyleborderWidth, $rootScope.offsetX1, $rootScope.offsetY1, $rootScope.x, $rootScope.y)
break;
case "Rectangle":
$rootScope.rectNumber = $rootScope.ObjectIndex++;
- $rootScope.isRectanglePreviewCompleted = true;
+ // $rootScope.isRectanglePreviewCompleted = true;
$rootScope.DrawRectangleOnModuleItem('#canvas', $rootScope.rectNumber, $rootScope.shapestyleFillColor, $rootScope.shapestyleborderColor, $rootScope.shapestyleOpacity, $rootScope.shapestyleborderWidth, $rootScope.offsetX1, $rootScope.offsetY1, $rootScope.x, $rootScope.y);
break;
case "Circle":
$rootScope.CircleNumber = $rootScope.ObjectIndex++;
- $rootScope.isCirclePreviewCompleted = true;
+ // $rootScope.isCirclePreviewCompleted = true;
$rootScope.DrawCircleOnModuleItem('#canvas', $rootScope.CircleNumber, $rootScope.shapestyleOpacity, $rootScope.shapestyleborderColor, $rootScope.shapestyleborderWidth, $rootScope.shapestyleFillColor, $rootScope.offsetX1, $rootScope.offsetY1, $rootScope.x, $rootScope.y);
break;
case "Arrow":
$rootScope.ArrowNumber = $rootScope.ObjectIndex++;
- $rootScope.isArrowPreviewCompleted = true;
+ //$rootScope.isArrowPreviewCompleted = true;
$rootScope.DrawArrowOnModuleItem('#canvas', $rootScope.ArrowNumber, $rootScope.shapestyleborderColor, $rootScope.shapestyleborderWidth, $rootScope.offsetX1, $rootScope.offsetY1, $rootScope.x, $rootScope.y);
break;
case "Pin":
$rootScope.PinNumber = $rootScope.PinObjectIndex++;
$rootScope.PinArcNumber = $rootScope.ArcObjectIndex++;
- $rootScope.isPinPreviewCompleted = true;
+ //$rootScope.isPinPreviewCompleted = true;
$rootScope.DrawPinOnModuleItem('#canvas', $rootScope.PinNumber, $rootScope.offsetX1, $rootScope.offsetY1, $rootScope.x, $rootScope.y, $rootScope.PinArcNumber);
break;
@@ -1213,7 +1216,7 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
// Draw text
$rootScope.resetTextRect = $rootScope.ObjectIndex++;
$rootScope.TextNumber = $rootScope.ObjectIndex++;
- $rootScope.isTextAreaPreviewCompleted = true;
+ // $rootScope.isTextAreaPreviewCompleted = true;
$rootScope.TextEditorFunctionality('#canvas', $rootScope.TextNumber, $rootScope.offsetX1, $rootScope.offsetY1, $rootScope.resetTextRect, $rootScope.shapestyleOpacity, $rootScope.shapestyleborderColor, $rootScope.shapestyleborderWidth, $rootScope.shapestyleFillColor, $rootScope.x, $rootScope.y);
break;
case "DrawPolygon":
@@ -1232,35 +1235,35 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
switch ($rootScope.shapeType) {
case "Line":
$(".line").remove();
-
+ $rootScope.isLinePreviewCompleted = true;
$("#canvasDiv").append("
");
$rootScope.Annotationangle();
break;
case "Arrow":
$(".arrow").remove();
-
+ $rootScope.isArrowPreviewCompleted = true;
$("#canvasDiv").append("
");
$rootScope.Annotationangle();
break;
case "Pin":
$(".pin").remove();
-
+ $rootScope.isPinPreviewCompleted = true;
$("#canvasDiv").append("
");
$rootScope.Annotationangle();
break;
case "Circle":
$(".circle").remove();
-
+ $rootScope.isCirclePreviewCompleted = true;
$("#canvasDiv").append("
");
break;
case "Rectangle":
$(".rectangle").remove();
-
+ $rootScope.isRectanglePreviewCompleted = true;
$("#canvasDiv").append("
");
break;
case "TextArea":
$(".textarea").remove();
-
+ $rootScope.isTextAreaPreviewCompleted = true;
$("#canvasDiv").append("
");
break;
}
@@ -2160,10 +2163,10 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location",
$rootScope.startPageX = parseInt(event.clientX - ($("#canvas").offset().left));
$rootScope.startPageY = parseInt(event.clientY - ($("#canvas").offset().top));
- annotationCanvas.addEventListener('mousemove', $rootScope.OnPaintCanvasMouseMove, false);
+ annotationCanvas.addEventListener('mousemove', $rootScope.OnPaintBrushCanvasMouseMove, false);
}
- $rootScope.OnPaintCanvasMouseMove = function (event) {
+ $rootScope.OnPaintBrushCanvasMouseMove = function (event) {
$rootScope.xPage = parseInt(event.clientX - ($("#canvas").offset().left));
$rootScope.yPage = parseInt(event.clientY - ($("#canvas").offset().top));