Commit f7ecf31ec9d5a8a44ab47a5de799753a6fc875c4
1 parent
9803e0a2
Pin Size Reduced
Showing
1 changed file
with
5 additions
and
5 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
@@ -299,8 +299,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou | @@ -299,8 +299,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou | ||
299 | var canvas = document.createElement('canvas'); | 299 | var canvas = document.createElement('canvas'); |
300 | canvas.id = 'aaDetailViewCanvas'; | 300 | canvas.id = 'aaDetailViewCanvas'; |
301 | canvas.className = '.aaCanvas' | 301 | canvas.className = '.aaCanvas' |
302 | - canvas.height = parseInt(($scope.imageHeight)); | ||
303 | - canvas.width = parseInt($scope.imageWidth + 5); | 302 | + canvas.height = parseInt($scope.imageHeight + 10); |
303 | + canvas.width = parseInt($scope.imageWidth + 10); | ||
304 | canvas.style.left = '0px'; | 304 | canvas.style.left = '0px'; |
305 | canvas.style.top = '0px'; | 305 | canvas.style.top = '0px'; |
306 | canvas.style.position = "absolute"; | 306 | canvas.style.position = "absolute"; |
@@ -415,8 +415,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou | @@ -415,8 +415,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou | ||
415 | var canvas = document.createElement('canvas'); | 415 | var canvas = document.createElement('canvas'); |
416 | canvas.id = 'aaDetailViewCanvas'; | 416 | canvas.id = 'aaDetailViewCanvas'; |
417 | canvas.className = 'aaCanvas'; | 417 | canvas.className = 'aaCanvas'; |
418 | - canvas.height = relativeHeight; | ||
419 | - canvas.width = relativeWidth + 5; | 418 | + canvas.height = relativeHeight + 10; |
419 | + canvas.width = relativeWidth + 10; | ||
420 | canvas.style.left = '0px'; | 420 | canvas.style.left = '0px'; |
421 | canvas.style.top = '0px'; | 421 | canvas.style.top = '0px'; |
422 | canvas.style.position = "absolute"; | 422 | canvas.style.position = "absolute"; |
@@ -1333,7 +1333,7 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou | @@ -1333,7 +1333,7 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou | ||
1333 | visible: true, | 1333 | visible: true, |
1334 | fillStyle: radial, | 1334 | fillStyle: radial, |
1335 | x: x * $scope.sliderPercentValue, y: y * $scope.sliderPercentValue, | 1335 | x: x * $scope.sliderPercentValue, y: y * $scope.sliderPercentValue, |
1336 | - //radius: 5 * $scope.sliderPercentValue, | 1336 | + // radius: 5 * $scope.sliderPercentValue, |
1337 | radius: 10, | 1337 | radius: 10, |
1338 | 1338 | ||
1339 | click: function (clickedPin) { | 1339 | click: function (clickedPin) { |