Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/backbone/controls/time-slider.phtml
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

26 lines
1.0 KiB
PHTML
Executable File

<div class="grey-text mb-5">
<#= this.model.config.label #>
</div>
<div class="control-grid">
<div class="label mr-10">
<input type="range" class="tve-slider input change" data-fn="onChange" data-fn-input="onInput" min="<#= this.model.config.min #>" max="<#= this.model.config.max #>" value="<#= this.model.config.default #>"/>
</div>
<div class="input">
<div class="control-grid pb-0">
<div class="tcb-relative">
<div class="input">
<input type="text" class="with-hint tcb-input-minutes change width-input tcb-text-right" data-fn="onChange" value="<#= this.model.config.default #>" maxlength="3">
<span class="hint text-11"><?php echo __( 'M', 'thrive-cb' ); ?></span>
</div>
</div>
<div class="tcb-relative">
<div class="input">
<input type="text" class="with-hint tcb-input-seconds change width-input tcb-text-right" data-fn="onChange" value="<#= this.model.config.default #>" maxlength="2">
<span class="hint text-11"><?php echo __( 'S', 'thrive-cb' ); ?></span>
</div>
</div>
</div>
</div>
</div>