From 3c37da3f479f8ef8ce5275f6d6e677d4fd62b170 Mon Sep 17 00:00:00 2001 From: David Blake <37149377+BlakesHeaven@users.noreply.github.com> Date: Sat, 2 Nov 2019 22:20:32 +0000 Subject: [PATCH] Update \bludit\bl-plugins\version\js\version.js Prevent the Version plugin from hiding the current version on screen when a new version is available as this is not helpful. --- bl-plugins/version/js/version.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bl-plugins/version/js/version.js b/bl-plugins/version/js/version.js index a5005636..e20ae777 100644 --- a/bl-plugins/version/js/version.js +++ b/bl-plugins/version/js/version.js @@ -10,7 +10,7 @@ function getLatestVersion() { success: function(json) { // Constant BLUDIT_BUILD is defined on variables.js if (json.stable.build > BLUDIT_BUILD) { - $("#current-version").hide(); + //$("#current-version").hide(); //Uncomment if you want to hide the current version when a new version is available, but this is unhelpful. $("#new-version").show(); } },