Use strict checking
This commit is contained in:
parent
34e883ce81
commit
02f9c7c8ff
|
@ -74,7 +74,7 @@ jQuery( function ( $ ) {
|
|||
var $option = $( '<option></option>' )
|
||||
.prop( 'value', index )
|
||||
.text( state[ index ] );
|
||||
if ( index == stateValue ) {
|
||||
if ( index === stateValue ) {
|
||||
$option.prop( 'selected' );
|
||||
}
|
||||
$newstate.append( $option );
|
||||
|
|
Loading…
Reference in New Issue