mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-4710: Fix broken help link
This commit is contained in:
parent
16493841ad
commit
e59e1d148b
|
|
@ -302,8 +302,8 @@
|
|||
.appendTo($options);
|
||||
|
||||
if (this == 'label.help') {
|
||||
$link.click(function() {
|
||||
var helpURL = 'http://docs.cloud.com/CloudStack_Documentation';
|
||||
$link.addClass('help').click(function() {
|
||||
var helpURL = 'http://cloudstack.apache.org/';
|
||||
|
||||
window.open(helpURL, '_blank');
|
||||
|
||||
|
|
@ -311,7 +311,7 @@
|
|||
});
|
||||
}
|
||||
if (this == 'label.about') {
|
||||
$link.click(function() {
|
||||
$link.addClass('about').click(function() {
|
||||
var $logo = $('<div>').addClass('logo').html(_l('label.app.name')),
|
||||
$version = $('<div>').addClass('version').html(g_cloudstackversion),
|
||||
$about = $('<div>').addClass('about').append($logo).append($version);
|
||||
|
|
|
|||
Loading…
Reference in New Issue