mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-14 12:01:52 +00:00
Fix minifying renders MC 0.5.22+ unusable if minifying is enabled #1336
* pluginHandler.js: Removed superfluous ; to fix faulty substitution in minifying mode
This commit is contained in:
parent
f4a8981d4f
commit
97c54b78de
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ module.exports.pluginHandler = function (parent) {
|
||||||
st.src = '/pluginHandler.js';
|
st.src = '/pluginHandler.js';
|
||||||
document.body.appendChild(st);
|
document.body.appendChild(st);
|
||||||
};
|
};
|
||||||
return obj; };`;
|
return obj; }`;
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue