/home/techb158/public_html/wp-content/plugins/elementor/includes/controls
NameSizeModeActions
groups/-0755rm
alert.php18380666editdlrm
animation.php48700666editdlrm
base-data.php37500666editdlrm
base-icon-font.php5800666editdlrm
base-multiple.php20820666editdlrm
base-ui.php5160666editdlrm
base-units.php35790666editdlrm
base.php31540666editdlrm
box-shadow.php34740666editdlrm
button.php17180666editdlrm
choose.php22390666editdlrm
code.php20380666editdlrm
color.php20840666editdlrm
date-time.php20850666editdlrm
deprecated-notice.php23280666editdlrm
dimensions.php51200666editdlrm
divider.php8290666editdlrm
exit-animation.php26030666editdlrm
font.php22690666editdlrm
gallery.php74420666editdlrm
gaps.php16570666editdlrm
heading.php13480666editdlrm
hidden.php9480666editdlrm
hover-animation.php44250666editdlrm
icon.php320770666editdlrm
icons.php77480666editdlrm
image-dimensions.php37970666editdlrm
media.php153150666editdlrm
notice.php41690666editdlrm
number.php28310666editdlrm
popover-toggle.php27280666editdlrm
raw-html.php15190666editdlrm
repeater.php50830666editdlrm
section.php13620666editdlrm
select.php26250666editdlrm
select2.php27810666editdlrm
slider.php35720666editdlrm
structure.php25210666editdlrm
switcher.php21260666editdlrm
tab.php10300666editdlrm
tabs.php9440666editdlrm
text-shadow.php32080666editdlrm
text.php21300666editdlrm
textarea.php20540666editdlrm
url.php52490666editdlrm
visual-choice.php22040666editdlrm
wp-widget.php13780666editdlrm
wysiwyg.php17760666editdlrm
Edit: /home/techb158/public_html/wp-content/plugins/elementor/includes/controls/base-units.php (3579B)
'px', ]; } /** * Get units control default settings. * * Retrieve the default settings of the units control. Used to return the default * settings while initializing the units control. * * @since 1.0.0 * @access protected * * @return array Control default settings. */ protected function get_default_settings() { return [ 'size_units' => [ 'px' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, 'step' => 1, ], 'em' => [ 'min' => 0.1, 'max' => 10, 'step' => 0.1, ], 'rem' => [ 'min' => 0.1, 'max' => 10, 'step' => 0.1, ], '%' => [ 'min' => 0, 'max' => 100, 'step' => 1, ], 'deg' => [ 'min' => 0, 'max' => 360, 'step' => 1, ], 'grad' => [ 'min' => 0, 'max' => 400, 'step' => 1, ], 'rad' => [ 'min' => 0, 'max' => 6.2832, 'step' => 0.0001, ], 'turn' => [ 'min' => 0, 'max' => 1, 'step' => 0.01, ], 'vh' => [ 'min' => 0, 'max' => 100, 'step' => 1, ], 'vw' => [ 'min' => 0, 'max' => 100, 'step' => 1, ], 's' => [ 'min' => 0, 'max' => 3, 'step' => 0.1, ], 'ms' => [ 'min' => 0, 'max' => 3000, 'step' => 100, ], ], ]; } /** * Print units control settings. * * Used to generate the units control template in the editor. * * @since 1.0.0 * @access protected */ protected function print_units_template() { ?> <# if ( data.size_units && data.size_units.length > 1 ) { #>
<# _.each( data.size_units, function( unit ) { #> <# } ); #>
<# } #>