1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2025-06-05 21:49:31 +02:00

Fixed file extensions to prevent warnings of Mozillas validation tests

This commit is contained in:
nobody42
2020-03-24 09:42:24 +01:00
parent 172dda4429
commit f45a67b083
49 changed files with 27 additions and 26 deletions

View File

@ -210,9 +210,9 @@ helpers.determineResourceName = function (filename) {
return 'Ember.js';
case 'ext-core.jsm':
return 'Ext Core';
case 'font-awesome.min.css':
case 'font-awesome.min.cssm':
return 'Font Awesome';
case 'all.css':
case 'all.cssm':
return 'Font Awesome';
case 'jquery.min.jsm':
return 'jQuery';
@ -240,11 +240,11 @@ helpers.determineResourceName = function (filename) {
return 'Web Font Loader';
case 'vue.jsm':
return 'Vue.js';
case 'bootstrap.min.css':
case 'bootstrap.min.cssm':
return 'Bootstrap CSS';
case 'bootstrap.min.js':
case 'bootstrap.min.jsm':
return 'Bootstrap JS';
case 'bootstrap-slider.min.css':
case 'bootstrap-slider.min.cssm':
return 'bootstrap-slider';
default:
return 'Unknown';