mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2025-06-05 21:49:31 +02:00
Added AngularJS Material Design v1.1.21
This commit is contained in:
@ -131,6 +131,10 @@ var files = {
|
||||
// AngularJS ui-select
|
||||
'resources/angular-ui-select/0.20.0/select.min.jsm': true,
|
||||
|
||||
// AngularJS Material Design
|
||||
'resources/angular-material/1.1.21/angular-material.min.css': true,
|
||||
'resources/angular-material/1.1.21/angular-material.min.jsm': true,
|
||||
|
||||
// Angular Sanitize
|
||||
'resources/angular-sanitize/1.7.9/angular-sanitize.min.jsm': true,
|
||||
|
||||
|
@ -45,6 +45,8 @@ var mappings = {
|
||||
'angularjs/{version}/angular-sanitize.': resources.angularSanitize,
|
||||
'angularjs/{version}/angular-touch.': resources.angularTouch,
|
||||
'angularjs/{version}/angular.': resources.angular,
|
||||
'angular_material/{version}/angular-material.min.js': resources.angularMaterialDesignJS,
|
||||
'angular_material/{version}/angular-material.min.css': resources.angularMaterialDesignCSS,
|
||||
'dojo/{version}/dojo/dojo.': resources.dojo,
|
||||
'ext-core/{version}/ext-core.': resources.extCore,
|
||||
'ext-core/{version}/ext-core-debug.': resources.extCore,
|
||||
|
@ -88,6 +88,14 @@ var resources = {
|
||||
'path': 'resources/angularjs/{version}/angular-touch.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
'angularMaterialDesignJS': {
|
||||
'path': 'resources/angular-material/{version}/angular-material.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
'angularMaterialDesignCSS': {
|
||||
'path': 'resources/angular-material/{version}/angular-material.min.css',
|
||||
'type': 'text/css'
|
||||
},
|
||||
// AngularJS slider
|
||||
'angularJSslider': {
|
||||
'path': 'resources/angularjs-slider/{version}/rzslider.min.jsm',
|
||||
|
@ -263,7 +263,11 @@ helpers.determineResourceName = function (filename) {
|
||||
case 'angular-sanitize.min.js':
|
||||
return 'Angular Sanitize';
|
||||
case 'animate.min.css':
|
||||
return 'Animate CSS'
|
||||
return 'Animate CSS';
|
||||
case 'angular-material.min.jsm':
|
||||
return 'AngularJS Material Design';
|
||||
case 'angular-material.min.css':
|
||||
return 'AngularJS Material Design';
|
||||
case 'backbone-min.jsm':
|
||||
return 'Backbone.js';
|
||||
case 'bootstrap.min.css':
|
||||
@ -511,6 +515,8 @@ helpers.setLastVersion = function (type, version) {
|
||||
return '3.7.2';
|
||||
} else if (type.includes('/autocomplete.js/')) {
|
||||
return '0.37.1';
|
||||
} else if (type.includes('/angular-material/1.')) {
|
||||
return '1.1.21';
|
||||
} else if (type.includes('/backbone.js/0.')) {
|
||||
return '0.9.10';
|
||||
} else if (type.includes('/backbone.js/1.')) {
|
||||
|
@ -33,6 +33,7 @@
|
||||
<li>Donation methods updated (+Bitcoin, +Ether)</li>
|
||||
<li>Fixed: Keep 'Tweak HTML source code' enabled after browser restart (<a href="https://codeberg.org/nobody/LocalCDN/issues/15">#15</a>)</li>
|
||||
<li>Translations updated (Spanish)</li>
|
||||
<li>Added: AngularJS Material Design v1.1.21</li>
|
||||
</ul>
|
||||
<div class="topic-label">
|
||||
Please update your uBlock/uMatrix rules
|
||||
|
6
resources/angular-material/1.1.21/angular-material.min.css
vendored
Normal file
6
resources/angular-material/1.1.21/angular-material.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user