--- a/wp/wp-content/plugins/portfolio/bws_menu/js/general_script.js Thu Sep 29 08:06:27 2022 +0200
+++ b/wp/wp-content/plugins/portfolio/bws_menu/js/general_script.js Fri Sep 05 18:40:08 2025 +0200
@@ -15,8 +15,8 @@
*/
$( '.bws_form input, .bws_form textarea, .bws_form select' ).on(
"change paste select",
- function() {
- if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
+ function( e ) {
+ if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) && typeof ( e.originalEvent ) != 'undefined' ) {
bws_show_settings_notice();
};
}