mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Merge pull request #14 from kckarnige/main
Made it easier to change the version var
This commit is contained in:
commit
621836da5e
1 changed files with 4 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
||||||
exports.Version = require("../package.json").version;
|
exports.Version = require("../package.json").version;
|
||||||
|
|
||||||
exports.addStyle = function (styleString) {
|
exports.addStyle = function(styleString) {
|
||||||
const style = document.createElement("style");
|
const style = document.createElement('style');
|
||||||
style.textContent = styleString;
|
style.textContent = styleString;
|
||||||
document.head.append(style);
|
document.head.append(style);
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.addScript = function (scriptString) {
|
exports.addScript = function (scriptString) {
|
||||||
|
|
Loading…
Reference in a new issue