PluginProbe
Elementor Website Builder – more than just a page builder / 3.7.3
Elementor Website Builder – more than just a page builder v3.7.3
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 4.0.7 All 451 releases
← All changes | core/breakpoints/manager.php +5 -5 4.0.93.7.3 View file →
@@ -310,24 +310,24 @@
310 310 */
311 311 public static function get_default_config() {
312 312 return [
313 313 self::BREAKPOINT_KEY_MOBILE => [
314 - 'label' => esc_html__( 'Mobile Portrait', 'elementor' ),
314 + 'label' => esc_html__( 'Mobile', 'elementor' ),
315 315 'default_value' => 767,
316 316 'direction' => 'max',
317 317 ],
318 318 self::BREAKPOINT_KEY_MOBILE_EXTRA => [
319 - 'label' => esc_html__( 'Mobile Landscape', 'elementor' ),
319 + 'label' => esc_html__( 'Mobile Extra', 'elementor' ),
320 320 'default_value' => 880,
321 321 'direction' => 'max',
322 322 ],
323 323 self::BREAKPOINT_KEY_TABLET => [
324 - 'label' => esc_html__( 'Tablet Portrait', 'elementor' ),
324 + 'label' => esc_html__( 'Tablet', 'elementor' ),
325 325 'default_value' => 1024,
326 326 'direction' => 'max',
327 327 ],
328 328 self::BREAKPOINT_KEY_TABLET_EXTRA => [
329 - 'label' => esc_html__( 'Tablet Landscape', 'elementor' ),
329 + 'label' => esc_html__( 'Tablet Extra', 'elementor' ),
330 330 'default_value' => 1200,
331 331 'direction' => 'max',
332 332 ],
333 333 self::BREAKPOINT_KEY_LAPTOP => [
@@ -529,9 +529,9 @@
529 529 */
530 530 $deprecation_module = Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation;
531 531
532 532 // TODO: REMOVE THIS DEPRECATED HOOK IN ELEMENTOR v3.10.0/v4.0.0
533 - $templates = $deprecation_module->apply_deprecated_filter( $deprecated_hook, [ $templates ], '3.2.0', $replacement_hook );
533 + $templates = $deprecation_module->apply_deprecated_filter( $deprecated_hook, $templates, '3.2.0', $replacement_hook );
534 534
535 535 return apply_filters( $replacement_hook, $templates );
536 536 }
537 537 }