Implemented: Font Awesome v4.7.0 by stackpath.bootstrapcdn.com
This commit is contained in:
parent
2a6d29f6dc
commit
83c76a9b15
|
@ -186,6 +186,9 @@ var files = {
|
|||
'resources/ext-core/3.0.0/ext-core.jsm': true,
|
||||
'resources/ext-core/3.1.0/ext-core.jsm': true,
|
||||
|
||||
// Font Awesome
|
||||
'resources/fontawesome/4.7.0/font-awesome.min.cssm': true,
|
||||
|
||||
// jQuery v3.4.1
|
||||
'resources/jquery/latest/jquery.min.jsm': true,
|
||||
|
||||
|
|
|
@ -383,9 +383,10 @@ var mappings = {
|
|||
},
|
||||
// StackPath BootstrapCDN
|
||||
'stackpath.bootstrapcdn.com': {
|
||||
'/bootstrap/': {
|
||||
'{version}/js/bootstrap.min.js': resources.bootstrapJS,
|
||||
'{version}/css/bootstrap.min.css': resources.bootstrapCSS
|
||||
'/': {
|
||||
'bootstrap/{version}/js/bootstrap.min.js': resources.bootstrapJS,
|
||||
'bootstrap/{version}/css/bootstrap.min.css': resources.bootstrapCSS,
|
||||
'font-awesome/{version}/css/font-awesome.min.': resources.fontawesome
|
||||
}
|
||||
},
|
||||
// MaxCDN Bootstrap
|
||||
|
|
|
@ -70,6 +70,11 @@ var resources = {
|
|||
'path': 'resources/ext-core/{version}/ext-core.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
// Font Awesome
|
||||
'fontawesome': {
|
||||
'path': 'resources/fontawesome/{version}/font-awesome.min.cssm',
|
||||
'type': 'text/css'
|
||||
},
|
||||
// jQuery
|
||||
'jQuery': {
|
||||
'path': 'resources/jquery/latest/jquery.min.jsm',
|
||||
|
|
|
@ -203,6 +203,8 @@ helpers.determineResourceName = function (filename) {
|
|||
return 'Ember.js';
|
||||
case 'ext-core.jsm':
|
||||
return 'Ext Core';
|
||||
case 'font-awesome.min.cssm':
|
||||
return 'Font Awesome';
|
||||
case 'jquery.min.jsm':
|
||||
return 'jQuery';
|
||||
case 'jquery-ui.min.jsm':
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue