- small fixes;

This commit is contained in:
nikitozzzzzzz
2018-06-07 21:59:12 +03:00
parent 6505c4e4e5
commit 0f9e2446d1
2 changed files with 4 additions and 5 deletions
+4 -4
View File
@@ -502,22 +502,22 @@ jQuery(document).ready( function (){
}
}
jQuery(document).on('change', '.um-field select, .um-field input[type=radio], .um-field input[type=checkbox]', function () {
jQuery(document).on('change', '.um-field select, .um-field input[type="radio"], .um-field input[type="checkbox"]', function () {
var me = jQuery(this);
um_apply_conditions(me, false);
});
jQuery(document).on('input change', '.um-field input[type=text]', function () {
jQuery(document).on('input change', '.um-field input[type="text"]', function () {
var me = jQuery(this);
um_apply_conditions(me, false);
});
jQuery(document).on('input change', '.um-field input[type=number]', function () {
jQuery(document).on('input change', '.um-field input[type="number"]', function () {
var me = jQuery(this);
um_apply_conditions(me, false);
});
jQuery(document).on('input change', '.um-field input[type=password]', function () {
jQuery(document).on('input change', '.um-field input[type="password"]', function () {
var me = jQuery(this);
um_apply_conditions(me, false);
});
@@ -28,7 +28,6 @@ jQuery(document).ready(function() {
jQuery('.tipsy').hide();
um_admin_remove_modal();
console.log(um_admin_ajax_data.ajax_url);
jQuery.ajax({
url: um_admin_ajax_data.ajax_url,
type: 'POST',