PluginProbe
Booking Manager – Sync WP Booking Calendar – Import Events, Export Bookings to ICS Calendar / 2.1.21
Booking Manager – Sync WP Booking Calendar – Import Events, Export Bookings to ICS Calendar v2.1.21
2.1.22 2.1.21 2.1.20 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 trunk 1.1 2.0 2.0.1 2.0.10.2 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.17 2.0.18 2.0.2 2.0.20 2.0.21 All 56 releases
← All changes | core/wpbm-js.php +2 -27 2.0.12 → 2.1.21 View file →
@@ -94,9 +94,9 @@
94 94 , 'wpbm_plugin_filename' => WPBM_PLUGIN_FILENAME
95 95 , 'message_verif_requred' => esc_js(__('This field is required' , 'booking-manager'))
96 96 , 'message_verif_requred_for_check_box' => esc_js(__('This checkbox must be checked' , 'booking-manager'))
97 97 , 'message_verif_requred_for_radio_box' => esc_js(__('At least one option must be selected' , 'booking-manager'))
98 - , 'message_verif_emeil' => esc_js(__('Incorrect email field' , 'booking-manager'))
98 + , 'message_verif_emeil' => esc_js(__('Incorrect email address' , 'booking-manager'))
99 99 , 'message_verif_same_emeil' => esc_js(__('Your emails do not match' , 'booking-manager')) // Email Addresses Do Not Match
100 100
101 101 , 'wpbm_active_locale' => wpbm_get_locale()
102 102 , 'wpbm_message_processing' => esc_js( __('Processing' , 'booking-manager') )
@@ -113,34 +113,9 @@
113 113
114 114 // jQuery
115 115 wp_enqueue_script( 'jquery' );
116 116
117 - //FixIn: 8.4.7.23
118 - if ( false ) {
119 117
120 - $version = wpbm_get_registered_jquery_version();
121 -
122 - if ( $version !== false ) {
123 -
124 - if ( version_compare( $version, '1.9.1', '<' ) ) { // load jQuery 1.7.1, if "Theme" load older jQuery //FixIn: 7.0.1.3
125 - wp_deregister_script( 'jquery' );
126 - wp_register_script( 'jquery', 'http://code.jquery.com/jquery-1.9.1.min.js', false, '1.9.1' ); //FixIn: 7.0.1.3
127 - // wp_register_script('jquery', 'http://code.jquery.com/jquery-latest.min.js', false, false);
128 - wp_enqueue_script( 'jquery' );
129 -
130 - wp_register_script( 'jquery-migrate', 'http://code.jquery.com/jquery-migrate-1.0.0.js', false, '1.0.0' ); //FixIn: 7.0.1.3
131 - wp_enqueue_script( 'jquery-migrate' ); //FixIn: 7.0.1.3
132 - }
133 -
134 - ////////////////////////////////////////////////////////////////////////
135 - // jQuery Migrate
136 - if ( version_compare( $version, '1.9', '>=' ) ) { // if the jQuery newer then 1.9
137 - wp_register_script( 'jquery-migrate', 'http://code.jquery.com/jquery-migrate-1.0.0.js', false, '1.0.0' );
138 - wp_enqueue_script( 'jquery-migrate' );
139 - }
140 - }
141 - }
142 -
143 118 // Default Admin Libs
144 119 if ( ( $where_to_load == 'admin' )
145 120 // || ( is_admin() && ( defined( 'DOING_AJAX' ) ) && ( DOING_AJAX ) )
146 121 ) {
@@ -192,9 +167,9 @@
192 167 wp_enqueue_script( 'wpbm-admin-main', wpbm_plugin_url( '/js/admin.js'), array( 'wpbm-global-vars' ), '1.1');
193 168 wp_enqueue_script( 'wpbm-admin-support', wpbm_plugin_url( '/core/any/js/admin-support.js'), array( 'wpbm-global-vars' ), '1.1');
194 169
195 170 // Chosen Library
196 - wp_enqueue_script( 'wpbm-chosen', wpbm_plugin_url( '/assets/libs/chosen/chosen.jquery.min.js'), array( 'wpbm-global-vars' ), '1.1' );
171 + //wp_enqueue_script( 'wpbm-chosen', wpbm_plugin_url( '/assets/libs/chosen/chosen.jquery.min.js'), array( 'wpbm-global-vars' ), '1.1' );
197 172 }
198 173
199 174 }
200 175