CLOUDSTACK-4710: Fix broken help link

This commit is contained in:
Brian Federle 2013-09-19 13:36:58 -07:00
parent 16493841ad
commit e59e1d148b
1 changed files with 3 additions and 3 deletions

View File

@ -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);