You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by up...@apache.org on 2015/07/30 22:01:17 UTC

svn commit: r1693491 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/webapp/ solr/webapp/web/js/angular/controllers/index.js

Author: upayavira
Date: Thu Jul 30 20:01:17 2015
New Revision: 1693491

URL: http://svn.apache.org/r1693491
Log:
SOLR-7852 Hide cores menu when dashboard link clicked

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/webapp/   (props changed)
    lucene/dev/branches/branch_5x/solr/webapp/web/js/angular/controllers/index.js

Modified: lucene/dev/branches/branch_5x/solr/webapp/web/js/angular/controllers/index.js
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/webapp/web/js/angular/controllers/index.js?rev=1693491&r1=1693490&r2=1693491&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/webapp/web/js/angular/controllers/index.js (original)
+++ lucene/dev/branches/branch_5x/solr/webapp/web/js/angular/controllers/index.js Thu Jul 30 20:01:17 2015
@@ -16,7 +16,7 @@ limitations under the License.
 */
 
 solrAdminApp.controller('IndexController', ['$scope', 'System', 'Cores', function($scope, System, Cores) {
-  $scope.resetMenu("index");
+  $scope.resetMenu("index", true);
   $scope.reload = function() {
     System.get(function(data) {
       $scope.system = data;