mirror of https://github.com/apache/lucene.git
SOLR-4340: Admin UI - Analysis's Button Spinner goes wild
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1437764 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4c723f6e46
commit
3347ec8c20
|
@ -77,6 +77,9 @@ Optimizations
|
|||
* SOLR-4339: Admin UI - Display Field-Flags on Schema-Browser
|
||||
(steffkes)
|
||||
|
||||
* SOLR-4340: Admin UI - Analysis's Button Spinner goes wild
|
||||
(steffkes)
|
||||
|
||||
Other Changes
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -82,10 +82,9 @@
|
|||
float: right;
|
||||
}
|
||||
|
||||
#content #analysis .settings button.loader
|
||||
#content #analysis .settings button span
|
||||
{
|
||||
background-position: 2px 50%;
|
||||
padding-left: 21px;
|
||||
background-image: url( ../../img/ico/funnel.png );
|
||||
}
|
||||
|
||||
#content #analysis .settings .verbose_output
|
||||
|
|
|
@ -269,7 +269,7 @@ sammy.get
|
|||
dataType : 'json',
|
||||
beforeSend : function( xhr, settings )
|
||||
{
|
||||
loader.show( button );
|
||||
loader.show( $( 'span', button ) );
|
||||
button.attr( 'disabled', true );
|
||||
},
|
||||
success : function( response, status_text, xhr, form )
|
||||
|
@ -325,7 +325,7 @@ sammy.get
|
|||
},
|
||||
complete : function()
|
||||
{
|
||||
loader.hide( $( 'button', analysis_form ) );
|
||||
loader.hide( $( 'span', button ) );
|
||||
button.removeAttr( 'disabled' );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -59,7 +59,7 @@ limitations under the License.
|
|||
|
||||
<div class="buttons clearfix">
|
||||
|
||||
<button type="submit">Analyse Values</button>
|
||||
<button type="submit"><span>Analyse Values</span></button>
|
||||
|
||||
<div class="verbose_output active">
|
||||
<a>Verbose Output</a>
|
||||
|
|
Loading…
Reference in New Issue