| @@ -43,13 +43,30 @@ | ||
| 43 | 43 | * @access public |
| 44 | 44 | */ |
| 45 | 45 | public function content_template() { |
| 46 | 46 | ?> |
| 47 | - <button class="elementor-panel-heading"> | |
| 47 | + <div class="elementor-panel-heading"> | |
| 48 | 48 | <div class="elementor-panel-heading-toggle elementor-section-toggle" data-collapse_id="{{ data.name }}"> |
| 49 | - <i class="eicon-caret-right" aria-hidden="true"></i> | |
| 49 | + <i class="eicon" aria-hidden="true"></i> | |
| 50 | 50 | </div> |
| 51 | 51 | <div class="elementor-panel-heading-title elementor-section-title">{{{ data.label }}}</div> |
| 52 | - </button> | |
| 52 | + </div> | |
| 53 | 53 | <?php |
| 54 | + } | |
| 55 | + | |
| 56 | + /** | |
| 57 | + * Get repeater control default settings. | |
| 58 | + * | |
| 59 | + * Retrieve the default settings of the repeater control. Used to return the | |
| 60 | + * default settings while initializing the repeater control. | |
| 61 | + * | |
| 62 | + * @since 1.0.0 | |
| 63 | + * @access protected | |
| 64 | + * | |
| 65 | + * @return array Control default settings. | |
| 66 | + */ | |
| 67 | + protected function get_default_settings() { | |
| 68 | + return [ | |
| 69 | + 'separator' => 'none', | |
| 70 | + ]; | |
| 54 | 71 | } |
| 55 | 72 | } |