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,7 +1,7 @@
|
|||
exports.Version = require("../package.json").version;
|
||||
|
||||
exports.addStyle = function (styleString) {
|
||||
const style = document.createElement("style");
|
||||
exports.addStyle = function(styleString) {
|
||||
const style = document.createElement('style');
|
||||
style.textContent = styleString;
|
||||
document.head.append(style);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue