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.
This commit is contained in:
David Blake 2019-11-02 22:20:32 +00:00
parent 142159a8e9
commit 3c37da3f47
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
},