Updated Branches: refs/heads/4.2 9050cfad3 -> 1e1de555f
CLOUDSTACK-4710: Fix broken help link (cherry picked from commit fa297948f0b74edf8e5fc4cdeb1789d381e1d708) Signed-off-by: animesh <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d6c4a84e Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d6c4a84e Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d6c4a84e Branch: refs/heads/4.2 Commit: d6c4a84e0b96c15cdb181ec02a0b796387a1d0e2 Parents: 9050cfa Author: Brian Federle <[email protected]> Authored: Thu Sep 19 13:36:58 2013 -0700 Committer: animesh <[email protected]> Committed: Fri Sep 20 11:06:59 2013 -0700 ---------------------------------------------------------------------- ui/scripts/ui/core.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d6c4a84e/ui/scripts/ui/core.js ---------------------------------------------------------------------- diff --git a/ui/scripts/ui/core.js b/ui/scripts/ui/core.js index c23484b..a11d14e 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 = $('<div>').addClass('logo').html(_l('label.app.name')), $version = $('<div>').addClass('version').html(g_cloudstackversion), $about = $('<div>').addClass('about').append($logo).append($version);
