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:
parent
142159a8e9
commit
3c37da3f47
|
@ -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();
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue