From 03956599c90b9257efffc407894be4fa272485e0 Mon Sep 17 00:00:00 2001 From: Danny van der Sluijs Date: Tue, 31 Dec 2024 14:20:40 +0100 Subject: [PATCH] refactor: Remove old greasemonkey script as it no longer being used --- userscript.js | 116 -------------------------------------------------- 1 file changed, 116 deletions(-) delete mode 100644 userscript.js diff --git a/userscript.js b/userscript.js deleted file mode 100644 index 8d1308a0..00000000 --- a/userscript.js +++ /dev/null @@ -1,116 +0,0 @@ -// ==UserScript== -// @name PHP SDK Entity generator -// @namespace php -// @description Generates php class that can be used in SDK -// @include https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?* -// @version 1 -// @grant none -// ==/UserScript== - -(function() { - var instant_download = false; - - /** Add textarea to display php code **/ - // Push current content to the left. - $('body > form').css('float', 'left'); - $('body > form').css('width', '50%'); - $('body > form').css('overflow', 'auto'); - - // Add textarea to body, css might need some work. - $('', { - id : 'php_download', - text: 'Download Code', - style: 'margin: 10px; padding: 10px; color: white; background-color: red' - }).appendTo('body'); - - $('

').appendTo('body'); - - $('