| 1 |
<script type="text/template" id="tmpl-elementor-kit-panel"> |
| 2 |
<main id="elementor-kit__panel-content__wrapper" class="elementor-panel-content-wrapper"></main> |
| 3 |
</script> |
| 4 |
|
| 5 |
<script type="text/template" id="tmpl-elementor-kit-panel-content"> |
| 6 |
<div id="elementor-kit-panel-content-controls"></div> |
| 7 |
<# |
| 8 |
const tabConfig = $e.components.get( 'panel/global' ).getActiveTabConfig(); |
| 9 |
if ( tabConfig.helpUrl ) { #> |
| 10 |
<div id="elementor-panel__editor__help"> |
| 11 |
<a id="elementor-panel__editor__help__link" href="{{ tabConfig.helpUrl }}" target="_blank"> |
| 12 |
<?php echo esc_html__( 'Need Help', 'elementor' ); ?> |
| 13 |
<i class="eicon-help-o"></i> |
| 14 |
</a> |
| 15 |
</div> |
| 16 |
<# |
| 17 |
} |
| 18 |
|
| 19 |
if ( tabConfig.additionalContent ) { |
| 20 |
#> {{{ tabConfig.additionalContent }}} <# |
| 21 |
} |
| 22 |
#> |
| 23 |
</script> |
| 24 |
|
| 25 |
<script type="text/template" id="tmpl-elementor-global-style-repeater-row"> |
| 26 |
<# let removeClass = 'remove', |
| 27 |
removeIcon = 'eicon-trash-o'; |
| 28 |
|
| 29 |
if ( ! itemActions.remove ) { |
| 30 |
removeClass += '--disabled'; |
| 31 |
|
| 32 |
removeIcon = 'eicon-disable-trash-o' |
| 33 |
} |
| 34 |
#> |
| 35 |
<# if ( itemActions.sort ) { #> |
| 36 |
<button class="elementor-repeater-row-tool elementor-repeater-row-tools elementor-repeater-tool-sort" aria-label="<?php echo esc_attr__( 'Reorder', 'elementor' ); ?>"> |
| 37 |
<i class="eicon-cursor-move" aria-hidden="true"></i> |
| 38 |
</button> |
| 39 |
<# } #> |
| 40 |
<button class="elementor-repeater-row-tool elementor-repeater-tool-{{{ removeClass }}}" aria-label="<?php echo esc_attr__( 'Remove', 'elementor' ); ?>"> |
| 41 |
<i class="{{{ removeIcon }}}" aria-hidden="true"></i> |
| 42 |
<# if ( itemActions.remove ) { #> |
| 43 |
<# } #> |
| 44 |
</button> |
| 45 |
<div class="elementor-repeater-row-controls"></div> |
| 46 |
</script> |
| 47 |
|