Open the Drawer
jQuery( document).ready( function( $ ){
$( '#whatever' ).on( 'click' , function() {
window.CartPops.drawer.show();
});
});
Closer the Drawer
jQuery( document).ready( function( $ ){
$( '#whatever' ).on( 'click' , function() {
window.CartPops.drawer.hide();
});
});