File "index.js"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/utils/get-responsive-placeholder/index.js
File size: 596 B (596 B bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

export default function getResponsivePlaceholder( name, attributes, device, fallback ) {
	// Make sure this is the desktop value.
	name = name.replace( 'Tablet', '' ).replace( 'Mobile', '' );

	let responsivePlaceholder = attributes[ name ];

	if ( 'Mobile' === device && ( attributes[ name + 'Tablet' ] || 0 === attributes[ name + 'Tablet' ] ) ) {
		responsivePlaceholder = attributes[ name + 'Tablet' ];
	}

	if ( '' === responsivePlaceholder || false === responsivePlaceholder || undefined === responsivePlaceholder ) {
		responsivePlaceholder = fallback;
	}

	return responsivePlaceholder;
}