Author: yusaku
Date: Wed May 22 21:39:22 2013
New Revision: 1485440
URL: http://svn.apache.org/r1485440
Log:
AMBARI-2157. Page title and cluster name shown in the header are not the same
case. (yusaku)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-web/app/controllers/main.js
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1485440&r1=1485439&r2=1485440&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Wed May 22 21:39:22 2013
@@ -873,6 +873,9 @@ Trunk (unreleased changes):
BUG FIXES
+ AMBARI-2157. Page title and cluster name shown in the header are not the same
+ case. (yusaku)
+
AMBARI-2183. Postgres setup failed. (smohanty)
AMBARI-2182. Expose "active" attribute for Stack resource. (smohanty)
Modified: incubator/ambari/trunk/ambari-web/app/controllers/main.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/controllers/main.js?rev=1485440&r1=1485439&r2=1485440&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/controllers/main.js (original)
+++ incubator/ambari/trunk/ambari-web/app/controllers/main.js Wed May 22
21:39:22 2013
@@ -26,7 +26,6 @@ App.MainController = Em.Controller.exten
var name = App.router.get('clusterController.clusterName');
if (name) {
name = name.length > 13 ? name.substr(0, 10) + "..." : name;
- name = name.capitalize();
} else {
name = Em.I18n.t('common.loading');
}