From d0e07e8f8c455f21abbeb6569864a83f51bcde9a Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Wed, 11 Apr 2012 17:29:22 +0000 Subject: [PATCH] SOLR-3330: Add a 'reload' button -- yes its the same as browser refresh! git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1324885 13f79535-47bb-0310-9956-ffa450edef68 --- solr/webapp/web/css/styles/plugins.css | 1 + solr/webapp/web/js/scripts/plugins.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/solr/webapp/web/css/styles/plugins.css b/solr/webapp/web/css/styles/plugins.css index b97ddd52d11..93d5c96289d 100644 --- a/solr/webapp/web/css/styles/plugins.css +++ b/solr/webapp/web/css/styles/plugins.css @@ -12,6 +12,7 @@ #content #plugins #navigation .PLUGINCHANGES { margin-top: 20px; } #content #plugins #navigation .PLUGINCHANGES a { background-image: url( ../../img/ico/eye.png ); } +#content #plugins #navigation .RELOAD a { background-image: url( ../../img/ico/arrow-circle.png ); } #content #plugins #navigation a diff --git a/solr/webapp/web/js/scripts/plugins.js b/solr/webapp/web/js/scripts/plugins.js index 5f9636a05e4..5dedf60c457 100644 --- a/solr/webapp/web/js/scripts/plugins.js +++ b/solr/webapp/web/js/scripts/plugins.js @@ -115,7 +115,7 @@ var render_plugin_data = function( plugin_data, plugin_sort, types ) } navigation_content.push( '
  • Watch Changes
  • ' ); - //navigation_content.push( '
  • Refresh Values
  • ' ); + navigation_content.push( '
  • Refresh Values
  • ' ); navigation_element .html( navigation_content.join( "\n" ) );