Fixed: Typo (#194)

This commit is contained in:
nobody 2020-12-08 19:45:37 +01:00
parent 070b2eaff4
commit dc505018c1
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
2 changed files with 3 additions and 3 deletions

View File

@ -697,11 +697,11 @@ var resources = {
}, },
// p5.js // p5.js
'p5JS': { 'p5JS': {
'path': 'resources/p5js/1.1.9/', 'path': 'resources/p5js/{version}/p5.min.jsm',
'type': 'application/javascript' 'type': 'application/javascript'
}, },
'p5JSsound': { 'p5JSsound': {
'path': 'resources/p5js/1.1.9/p5.sound.min.jsm', 'path': 'resources/p5js/{version}/p5.sound.min.jsm',
'type': 'application/javascript' 'type': 'application/javascript'
}, },
// page.js [Deprecated?] // page.js [Deprecated?]

View File

@ -332,7 +332,7 @@ targets.setLastVersion = function (type, version) {
return '1.3.3'; return '1.3.3';
} else if (type.startsWith('/p2p-media-loader-core') || type.startsWith('/p2p-media-loader-hlsjs')) { } else if (type.startsWith('/p2p-media-loader-core') || type.startsWith('/p2p-media-loader-hlsjs')) {
return '0.6.2'; return '0.6.2';
} else if (type.startsWith('/p5.js/1.')) { } else if (type.startsWith('/p5js/1.')) {
return '1.1.9'; return '1.1.9';
} else if (type.startsWith('/page.js/1.')) { } else if (type.startsWith('/page.js/1.')) {
return '1.11.6'; return '1.11.6';