Browse Source

Corrige javascript de frontend (adiciona aspas)

master
Guilherme Capanema 6 years ago
parent
commit
b206ce5369
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      public/js/cf7-states-cities-public.js

+ 1
- 1
public/js/cf7-states-cities-public.js View File

@ -17,7 +17,7 @@
$city_select.find( 'option:not([value=""])' ).remove(); $city_select.find( 'option:not([value=""])' ).remove();
$.each( response, function( key, city ) { $.each( response, function( key, city ) {
$city_select.append('<option value=' + city + '>' + city + '</option>');
$city_select.append('<option value="' + city + '">' + city + '</option>');
} ); } );
$city_select.prop('disabled', false); $city_select.prop('disabled', false);


Loading…
Cancel
Save