PluginProbe
Elementor Website Builder – more than just a page builder / 3.27.4
Elementor Website Builder – more than just a page builder v3.27.4
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | includes/preview.php +2 -3 4.0.73.27.4 View file →
@@ -238,9 +238,9 @@
238 238 Plugin::$instance->elements_manager->enqueue_elements_styles();
239 239
240 240 Plugin::$instance->widgets_manager->enqueue_widgets_styles();
241 241
242 - $suffix = Utils::is_script_debug() ? '' : '.min';
242 + $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
243 243
244 244 $direction_suffix = is_rtl() ? '-rtl' : '';
245 245
246 246 wp_register_style(
@@ -294,11 +294,10 @@
294 294 private function enqueue_scripts() {
295 295 Plugin::$instance->frontend->register_scripts();
296 296
297 297 Plugin::$instance->widgets_manager->enqueue_widgets_scripts();
298 - Plugin::$instance->elements_manager->enqueue_elements_scripts();
299 298
300 - $suffix = Utils::is_script_debug() ? '' : '.min';
299 + $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
301 300
302 301 wp_enqueue_script(
303 302 'elementor-inline-editor',
304 303 ELEMENTOR_ASSETS_URL . 'lib/inline-editor/js/inline-editor' . $suffix . '.js',