1
0
mirror of https://github.com/konpa/devicon.git synced 2025-02-24 01:02:22 +01:00

Merge pull request #455 from devicons/amacado/feature/444-svg-bash-plain

fix displaying svg code in devicon.dev
This commit is contained in:
Thomas Bui 2021-01-03 22:36:21 -08:00 committed by GitHub
commit 00b6cc8483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,11 +118,30 @@ devicon.controller('IconListCtrl', function($scope, $http, $compile) {
$http.get(baseUrl + '/icons/' + $scope.selectedIcon.name + '/' + $scope.selectedIcon.name + '-' + svgVersion + '.svg').success(function(data){
var svg = angular.element(data);
var innerSVG = (svg[0].innerHTML);
var svgElement = angular.element(data);
var innerSvgElement = null;
$scope.selectedSvgIcon = innerSVG;
$scope.selectedSvgIndex = index;
/**
* Loop trough svg image to find
* the actual svg content (not any comments or stuff
* we don't care for).
* See https://github.com/devicons/devicon/issues/444#issuecomment-753699913
*/
for (const [key, value] of Object.entries(svgElement)) {
/** [object SVGSVGElement] ensures we have the actual svg content */
if(value.toString() == '[object SVGSVGElement]') {
innerSvgElement = value;
break;
}
}
if(innerSvgElement === null) {
console.error('Could not find content of given SVG.')
} else {
var innerSVG = (innerSvgElement.innerHTML);
$scope.selectedSvgIcon = innerSVG;
$scope.selectedSvgIndex = index;
}
});
}
/*---- End of "Change selected svg icon" ----*/