template.php
17 lines
| 1 | <div class="oceanwp-mb-desc"> |
| 2 | <# if ( data.label ) { #> |
| 3 | <span class="butterbean-label">{{ data.label }}</span> |
| 4 | <# } #> |
| 5 | |
| 6 | <# if ( data.description ) { #> |
| 7 | <span class="butterbean-description">{{{ data.description }}}</span> |
| 8 | <# } #> |
| 9 | </div> |
| 10 | |
| 11 | <div class="oceanwp-mb-field"> |
| 12 | <div class="range-wrapper"> |
| 13 | <input type="range" {{{ data.attr }}} value="{{ data.value }}" /> |
| 14 | <input type="number" {{{ data.attr }}} class="oceanwp-range-input" value="{{ data.value }}" /> |
| 15 | <span class="oceanwp-reset-slider"><span class="dashicons dashicons-image-rotate"></span></span> |
| 16 | </div> |
| 17 | </div> |