mirror of
https://github.com/myvesta/vesta
synced 2025-07-06 04:51:54 -07:00
Reverting to jQuery 'change' method instead of 'on' method
This commit is contained in:
parent
1441b2aa9c
commit
36a1a3d49b
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ $(document).ready(function() {
|
|||
$('#v_password').text(Array($('input[name=v_password]').val().length+1).join('*'));
|
||||
});
|
||||
|
||||
$('#mail_configuration').on('change',function(evt){
|
||||
$('#mail_configuration').change(function(evt){
|
||||
var opt = $(evt.target).find('option:selected');
|
||||
|
||||
switch(opt.attr('v_type')){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue