Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
wp-content
/
plugins
/
chaty
/
src
/
components
:
widget-size.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
const $ = window.jQuery; export default function widgetSize() { $('.widget-size-control').on('change', function() { if( this.type === 'radio' ) { $('#custom-widget-size').css({ display: this.id === 'size-custom' ? 'block' : 'none' }) $('.widget-size-control').prop('checked', false); $(this).prop('checked', true); } $('#custom-widget-size-input').val( this.value ); change_custom_preview(); }) }