diff options
author | Jesús <heckyel@hyperbola.info> | 2020-03-26 14:21:23 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-03-26 14:21:23 -0500 |
commit | bfdb4a9d6ec85b2d6c87bcf37dac3449ea82f35a (patch) | |
tree | c7b961c4037d822506ba0141572568237e6b25a5 | |
parent | 6c83299916f16a429efaea4bb3d0d7c4e6c32e32 (diff) | |
download | librecart-bfdb4a9d6ec85b2d6c87bcf37dac3449ea82f35a.tar.lz librecart-bfdb4a9d6ec85b2d6c87bcf37dac3449ea82f35a.tar.xz librecart-bfdb4a9d6ec85b2d6c87bcf37dac3449ea82f35a.zip |
Remove blankspaces
-rw-r--r-- | public/catalog/view/theme/default/template/account/address_form.twig | 88 | ||||
-rw-r--r-- | public/php.ini | 2 |
2 files changed, 45 insertions, 45 deletions
diff --git a/public/catalog/view/theme/default/template/account/address_form.twig b/public/catalog/view/theme/default/template/account/address_form.twig index 16d240d..17db878 100644 --- a/public/catalog/view/theme/default/template/account/address_form.twig +++ b/public/catalog/view/theme/default/template/account/address_form.twig @@ -74,19 +74,19 @@ <div class="col-sm-10"> <select name="country_id" id="input-country" class="form-control"> <option value="">{{ text_select }}</option> - + {% for country in countries %} {% if country.country_id == country_id %} - + <option value="{{ country.country_id }}" selected="selected">{{ country.name }}</option> - + {% else %} - + <option value="{{ country.country_id }}">{{ country.name }}</option> - + {% endif %} {% endfor %} - + </select> {% if error_country %} <div class="text-danger">{{ error_country }}</div> @@ -108,29 +108,29 @@ <div class="col-sm-10"> <select name="custom_field[{{ custom_field.location }}][{{ custom_field.custom_field_id }}]" id="input-custom-field{{ custom_field.custom_field_id }}" class="form-control"> <option value="">{{ text_select }}</option> - - - + + + {% for custom_field_value in custom_field.custom_field_value %} {% if address_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id == address_custom_field[custom_field.custom_field_id] %} - + <option value="{{ custom_field_value.custom_field_value_id }}" selected="selected">{{ custom_field_value.name }}</option> - - - + + + {% else %} - - - + + + <option value="{{ custom_field_value.custom_field_value_id }}">{{ custom_field_value.name }}</option> - - - + + + {% endif %} {% endfor %} - - - + + + </select> {% if error_custom_field[custom_field.custom_field_id] %} <div class="text-danger">{{ error_custom_field[custom_field.custom_field_id] }}</div> @@ -286,38 +286,38 @@ $('.form-group[data-sort]').detach().each(function() { if ($(this).attr('data-sort') >= 0 && $(this).attr('data-sort') <= $('.form-group').length-2) { $('.form-group').eq(parseInt($(this).attr('data-sort'))+2).before(this); } - + if ($(this).attr('data-sort') > $('.form-group').length-2) { $('.form-group:last').after(this); } - + if ($(this).attr('data-sort') == $('.form-group').length-2) { $('.form-group:last').after(this); } - + if ($(this).attr('data-sort') < -$('.form-group').length-2) { $('.form-group:first').before(this); } }); -//--></script> +//--></script> <script type="text/javascript"><!-- $('button[id^=\'button-custom-field\']').on('click', function() { var element = this; - + $('#form-upload').remove(); - + $('body').prepend('<form enctype="multipart/form-data" id="form-upload" style="display: none;"><input type="file" name="file" /></form>'); - + $('#form-upload input[name=\'file\']').trigger('click'); - + if (typeof timer != 'undefined') { clearInterval(timer); } - + timer = setInterval(function() { if ($('#form-upload input[name=\'file\']').val() != '') { clearInterval(timer); - + $.ajax({ url: 'index.php?route=tool/upload', type: 'post', @@ -334,14 +334,14 @@ $('button[id^=\'button-custom-field\']').on('click', function() { }, success: function(json) { $(element).parent().find('.text-danger').remove(); - + if (json['error']) { $(element).parent().find('input').after('<div class="text-danger">' + json['error'] + '</div>'); } - + if (json['success']) { alert(json['success']); - + $(element).parent().find('input').val(json['code']); } }, @@ -352,7 +352,7 @@ $('button[id^=\'button-custom-field\']').on('click', function() { } }, 500); }); -//--></script> +//--></script> <script type="text/javascript"><!-- $('.date').datetimepicker({ language: '{{ datepicker }}', @@ -369,7 +369,7 @@ $('.time').datetimepicker({ language: '{{ datepicker }}', pickDate: false }); -//--></script> +//--></script> <script type="text/javascript"><!-- $('select[name=\'country_id\']').on('change', function() { $.ajax({ @@ -387,23 +387,23 @@ $('select[name=\'country_id\']').on('change', function() { } else { $('input[name=\'postcode\']').parent().parent().removeClass('required'); } - + html = '<option value="">{{ text_select }}</option>'; - + if (json['zone'] && json['zone'] != '') { for (i = 0; i < json['zone'].length; i++) { html += '<option value="' + json['zone'][i]['zone_id'] + '"'; - + if (json['zone'][i]['zone_id'] == '{{ zone_id }}') { html += ' selected="selected"'; } - + html += '>' + json['zone'][i]['name'] + '</option>'; } } else { html += '<option value="0" selected="selected">{{ text_none }}</option>'; } - + $('select[name=\'zone_id\']').html(html); }, error: function(xhr, ajaxOptions, thrownError) { @@ -413,5 +413,5 @@ $('select[name=\'country_id\']').on('change', function() { }); $('select[name=\'country_id\']').trigger('change'); -//--></script> -{{ footer }}
\ No newline at end of file +//--></script> +{{ footer }} diff --git a/public/php.ini b/public/php.ini index 29b615c..a9229f3 100644 --- a/public/php.ini +++ b/public/php.ini @@ -14,4 +14,4 @@ session.cookie_httponly = On session.gc_maxlifetime = 3600 allow_url_fopen = On ;display_errors = 1 -;error_reporting = E_ALL
\ No newline at end of file +;error_reporting = E_ALL |