Commit 4c585150e64c80975a09a635cee6320a51ffcfec
Merge branch 'Bugs_v4' into Develop
Showing
1 changed file
with
1 additions
and
1 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -4843,7 +4843,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
4843 | 4843 | |
4844 | 4844 | var tempCanvases = $("canvas[id*='transparencyTempCanvas']"); |
4845 | 4845 | for (var i = 0; i < tempCanvases.length; i++) { |
4846 | - tempCanvases[i].remove(); | |
4846 | + tempCanvases[i].parentNode.removeChild(tempCanvases[i]); | |
4847 | 4847 | } |
4848 | 4848 | |
4849 | 4849 | $('.ui-wrapper').remove(); | ... | ... |