mirror of https://github.com/apache/lucene.git
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
This commit is contained in:
parent
28392a4609
commit
d0e07e8f8c
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
#content #plugins #navigation .PLUGINCHANGES { margin-top: 20px; }
|
#content #plugins #navigation .PLUGINCHANGES { margin-top: 20px; }
|
||||||
#content #plugins #navigation .PLUGINCHANGES a { background-image: url( ../../img/ico/eye.png ); }
|
#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
|
#content #plugins #navigation a
|
||||||
|
|
|
@ -115,7 +115,7 @@ var render_plugin_data = function( plugin_data, plugin_sort, types )
|
||||||
}
|
}
|
||||||
|
|
||||||
navigation_content.push( '<li class="PLUGINCHANGES"><a href="#">Watch Changes</a></li>' );
|
navigation_content.push( '<li class="PLUGINCHANGES"><a href="#">Watch Changes</a></li>' );
|
||||||
//navigation_content.push( '<li class="RELOAD"><a href="#">Refresh Values</a></li>' );
|
navigation_content.push( '<li class="RELOAD"><a href="#" onClick="window.location.reload()">Refresh Values</a></li>' );
|
||||||
|
|
||||||
navigation_element
|
navigation_element
|
||||||
.html( navigation_content.join( "\n" ) );
|
.html( navigation_content.join( "\n" ) );
|
||||||
|
|
Loading…
Reference in New Issue