From a32769ce43bdebbd3f6923db2772db1afe57ffd8 Mon Sep 17 00:00:00 2001 From: Jiiks Date: Fri, 11 Dec 2015 06:53:23 +0200 Subject: [PATCH] Right --- js/bdapi.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/js/bdapi.js b/js/bdapi.js index b8f245a..da99908 100644 --- a/js/bdapi.js +++ b/js/bdapi.js @@ -10,41 +10,41 @@ //Returns currrent BrowserWindow https://github.com/atom/electron/blob/master/docs/api/browser-window.md -BdApi.prototype.getBrowserWindow = function() { +BdApi.getBrowserWindow = function() { }; //Joins a server //code = server invite code -BdApi.prototype.joinServer = function(code) { +BdApi.joinServer = function(code) { }; //Inject CSS to document head //id = id of element //css = custom css -BdApi.prototype.injectCSS = function(id, css) { +BdApi.injectCSS = function(id, css) { }; //Clear css/remove any element //id = id of element -BdApi.prototype.clearCSS = function(id) { +BdApi.clearCSS = function(id) { }; //Get another plugin //name = name of plugin -BdApi.prototype.getPlugin = function(name) { +BdApi.getPlugin = function(name) { }; //Get ipc for reason -BdApi.prototype.getIpc = function() { +BdApi.getIpc = function() { }; //Get BetterDiscord Core -BdApi.prototype.getCore = function() { +BdApi.getCore = function() { }; \ No newline at end of file