1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-05-12 08:00:12 +00:00

Minor fix to Put keyword

This commit is contained in:
boxgaming 2024-01-08 12:08:52 -06:00
parent 3e40944c27
commit 10bac0aa35

3
qb.js
View file

@ -2632,6 +2632,8 @@ var QB = new function() {
position--;
}
var vfs = GX.vfs();
if (value._dimensions) {
var idx = [];
for (var di=0; di < value._dimensions.length; di++) {
@ -3106,6 +3108,7 @@ var QB = new function() {
var script = document.createElement("script")
document.body.appendChild(script);
script.id = url;
script.async = false;
var file = vfs.getNode(url, vfsCwd);
if (file && file.type == vfs.FILE) {