Skip to content
Snippets Groups Projects
Commit c58edfdb authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Wrap and unwrap the select field with a special div

parent edabc8fa
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,24 @@
oldValidate.call(this, field, config);
};
var selectWrap = '<div class="form__select"></div>';
// Hook into the select builder to update the display
var oldConvertToSelect = $.fn.addressfield.convertToSelect;
$.fn.addressfield.convertToSelect = function() {
var $select = oldConvertToSelect.call(this);
$select.wrap(selectWrap);
return $select;
};
// Hook into the text builder to update the display
var oldConvertToText = $.fn.addressfield.convertToText;
$.fn.addressfield.convertToText = function() {
var $text = oldConvertToText.call(this);
$text.unwrap(selectWrap);
return $text;
};
$(document).ready(function formReady() {
$('.form div.address').addressfield({
json: '/static/addressfield.min.json',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment