From ac58490ea6b27b009a07cf06196cd05c2dfe5f8b Mon Sep 17 00:00:00 2001 From: luxick Date: Thu, 12 Jan 2023 14:51:55 +0100 Subject: [PATCH] Update esp-fixes.user.js --- esp-fixes.user.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/esp-fixes.user.js b/esp-fixes.user.js index 6ab5bc8..d594ea5 100644 --- a/esp-fixes.user.js +++ b/esp-fixes.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name ESP Fixes // @namespace https://esp.eas-cpq.de/ -// @version 1.3 +// @version 1.4 // @description Collection of fixes for the EAS Service Portal // @updateURL https://raw.githubusercontent.com/luxick/scripts/master/esp-fixes.user.js // @downloadURL https://raw.githubusercontent.com/luxick/scripts/master/esp-fixes.user.js @@ -59,14 +59,17 @@ var css = ` 'use strict'; // Add custom CSS - addGlobalStyle(css); + //addGlobalStyle(css); // Never open Popup windows NewWindowWithoutControls = OnlyTabs //Improve the tab title display - fixTitle(); + //fixTitle(); // Clear the ViewState every 500ms - setInterval(clearViewState,500); -}()); \ No newline at end of file + //setInterval(clearViewState,500); + $(document).ready(function(){ + $('#__EVENTVALIDATION').attr('autocomplete', 'off'); + }); +}());