| @@ -2,8 +2,9 @@ | ||
| 2 | 2 | namespace Elementor; |
| 3 | 3 | |
| 4 | 4 | use Elementor\Core\Wp_Api; |
| 5 | 5 | use Elementor\Core\Admin\Admin; |
| 6 | +use Elementor\Core\Breakpoints\Manager as Breakpoints_Manager; | |
| 6 | 7 | use Elementor\Core\Common\Modules\Ajax\Module as Ajax; |
| 7 | 8 | use Elementor\Core\Common\App as CommonApp; |
| 8 | 9 | use Elementor\Core\Debug\Inspector; |
| 9 | 10 | use Elementor\Core\Documents_Manager; |
| @@ -459,8 +460,13 @@ | ||
| 459 | 460 | */ |
| 460 | 461 | public $experiments; |
| 461 | 462 | |
| 462 | 463 | /** |
| 464 | + * @var Breakpoints_Manager | |
| 465 | + */ | |
| 466 | + public $breakpoints; | |
| 467 | + | |
| 468 | + /** | |
| 463 | 469 | * Clone. |
| 464 | 470 | * |
| 465 | 471 | * Disable class cloning and throw an error on object clone. |
| 466 | 472 | * |
| @@ -586,8 +592,9 @@ | ||
| 586 | 592 | * @access private |
| 587 | 593 | */ |
| 588 | 594 | private function init_components() { |
| 589 | 595 | $this->experiments = new Experiments_Manager(); |
| 596 | + $this->breakpoints = new Breakpoints_Manager(); | |
| 590 | 597 | $this->inspector = new Inspector(); |
| 591 | 598 | $this->debugger = $this->inspector; |
| 592 | 599 | |
| 593 | 600 | Settings_Manager::run(); |