taxonomy.js (257B)
1 ( function ( $, rwmb ) { 2 'use strict'; 3 4 function toggleAddInput( e ) { 5 e.preventDefault(); 6 this.nextElementSibling.classList.toggle( 'rwmb-hidden' ); 7 } 8 9 rwmb.$document.on( 'click', '.rwmb-taxonomy-add-button', toggleAddInput ); 10 } )( jQuery, rwmb );