popmake_popup_display_size_options_responsive( $options )
Contents
Description Description
Source Source
File: includes/input-options.php
function popmake_popup_display_size_options_responsive( $options ) { return array_merge( $options, array( // option => value __( 'Responsive Sizes⤵', 'popup-maker' ) => '', __( 'Nano - 10%', 'popup-maker' ) => 'nano', __( 'Micro - 20%', 'popup-maker' ) => 'micro', __( 'Tiny - 30%', 'popup-maker' ) => 'tiny', __( 'Small - 40%', 'popup-maker' ) => 'small', __( 'Medium - 60%', 'popup-maker' ) => 'medium', __( 'Normal - 70%', 'popup-maker' ) => 'normal', __( 'Large - 80%', 'popup-maker' ) => 'large', __( 'X Large - 95%', 'popup-maker' ) => 'xlarge', __( 'Non Responsive Sizes⤵', 'popup-maker' ) => '', __( 'Auto', 'popup-maker' ) => 'auto', __( 'Custom', 'popup-maker' ) => 'custom', ) ); }
Expand full source code Collapse full source code View on Trac