From e59e1d148b24b943e84239784a771ca993882e44 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Thu, 19 Sep 2013 13:36:58 -0700 Subject: [PATCH] CLOUDSTACK-4710: Fix broken help link --- ui/scripts/ui/core.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/scripts/ui/core.js b/ui/scripts/ui/core.js index c23484b8ba3..a11d14e1aff 100644 --- a/ui/scripts/ui/core.js +++ b/ui/scripts/ui/core.js @@ -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 = $('
').addClass('logo').html(_l('label.app.name')), $version = $('
').addClass('version').html(g_cloudstackversion), $about = $('
').addClass('about').append($logo).append($version);