Merge pull request #3240 from FinnStutzenstein/FixErr

Fixing wrong err call
This commit is contained in:
Emanuel Schütze 2017-05-06 08:13:44 +02:00 committed by GitHub
commit 4f0691075c

View File

@ -503,7 +503,7 @@ angular.module('OpenSlidesApp.core.pdf', [])
}
return '#' + decimalColors.join('');
} else {
console.err('Could not parse color "' + color + '"');
console.error('Could not parse color "' + color + '"');
return color;
}
},