Commit 8043d09392ffd0c0cb8371079b2d1adf2a416ecc
1 parent
ad5d6e5b
Commit Changes
Showing
2 changed files
with
2 additions
and
2 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... | ... | @@ -3550,7 +3550,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic |
3550 | 3550 | $location.path('/'); |
3551 | 3551 | }; |
3552 | 3552 | |
3553 | - $rootScope.resetDrawCanvas = function (e) { | |
3553 | + $rootScope.resetAnnotationCanvas = function (e) { | |
3554 | 3554 | |
3555 | 3555 | $('#canvas').removeLayers(); |
3556 | 3556 | ... | ... |
400-SOURCECODE/AIAHTML5.Web/index.html
... | ... | @@ -644,7 +644,7 @@ |
644 | 644 | <button type="button" class="btn btn-black-annotation btn-xs btn-annotation btn-annotation-rectangle" ng-mouseover="addToolTip(95, 100, 120, 'Draw Rectangle')" ng-mouseleave="removeToolTipOnMouseOut()" ng-click="DrawRectangle($event)"><img src="content/images/draw-rec.png" alt="" title=""></button> |
645 | 645 | <button type="button" class="btn btn-black-annotation btn-xs btn-annotation btn-annotation-circle" ng-mouseover="addToolTip(95, 120, 120, 'Draw Circle')" ng-mouseleave="removeToolTipOnMouseOut()" ng-click="DrawCircle($event)"><img src="content/images/draw-cir.png" alt="" title=""></button> |
646 | 646 | <!--<button type="button" class="btn btn-black-annotation btn-xs btn-annotation" ng-mouseover="addToolTip(95, 140, 120, 'Draw Polygon')" ng-mouseleave="removeToolTipOnMouseOut()" ng-click="DrawPolygon($event)"><img src="content/images/draw-poly.png" alt="" title=""></button>--> |
647 | - <button type="button" class="btn btn-black-annotation" id="resetBtn" style="padding:1px 7px;display:none;" ng-click="resetDrawCanvas()" ng-mouseover="addToolTip(95, 140, 120, 'Refresh')" ng-mouseleave="removeToolTipOnMouseOut()"><i class="fa fa-refresh"></i></button> | |
647 | + <button type="button" class="btn btn-black-annotation" id="resetBtn" style="padding:1px 7px;display:none;" ng-click="resetAnnotationCanvas()" ng-mouseover="addToolTip(95, 140, 120, 'Refresh')" ng-mouseleave="removeToolTipOnMouseOut()"><i class="fa fa-refresh"></i></button> | |
648 | 648 | </div> |
649 | 649 | </div> |
650 | 650 | </div> | ... | ... |