This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This has to be done this way - it's fix for bootstrap modal select2 issue | |
*/ | |
$('.modal select').css('width', '100%'); | |
$('select:not(.normal)').each(function () { | |
$(this).select2({ | |
theme: "bootstrap", // if you use https://github.com/select2/select2-bootstrap-theme | |
dropdownParent: $(this).parent() | |
}); | |
}); |