You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by an...@apache.org on 2013/10/03 08:06:09 UTC

[11/50] git commit: updated refs/heads/4.2 to 86c9363

CLOUDSTACK-4710: Fix broken help link


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/fa297948
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/fa297948
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/fa297948

Branch: refs/heads/4.2
Commit: fa297948f0b74edf8e5fc4cdeb1789d381e1d708
Parents: 798f34a
Author: Brian Federle <br...@citrix.com>
Authored: Thu Sep 19 13:36:58 2013 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Thu Sep 19 13:37:41 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/fa297948/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);