* The version number is right next to the logo that already says "RabbitMQ"
 * Fewer abbreviations is better
 * First Google result [in anonymous browser window] for "OTP" is Urban Dictionary.
   For "Erlang" it is erlang.org.
This commit is contained in:
Michael Klishin 2017-10-27 06:51:32 +03:00
parent 0d414bf0b3
commit 8380192b83
1 changed files with 2 additions and 2 deletions

View File

@ -534,8 +534,8 @@ function setup_global_vars() {
);
$('#versions').html(
'<abbr title="Available exchange types: ' + exchange_types.join(", ") + '">RMQ ' + fmt_escape_html(overview.rabbitmq_version) + '</abbr>' +
'<abbr title="' + fmt_escape_html(overview.erlang_full_version) + '">OTP ' + fmt_escape_html(overview.erlang_version) + '</abbr>'
'<abbr title="Available exchange types: ' + exchange_types.join(", ") + '">' + fmt_escape_html(overview.rabbitmq_version) + '</abbr>' +
'<abbr title="' + fmt_escape_html(overview.erlang_full_version) + '">Erlang ' + fmt_escape_html(overview.erlang_version) + '</abbr>'
);
nodes_interesting = false;
rabbit_versions_interesting = false;