Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Created March 11, 2013 21:27
Show Gist options
  • Save rosshanney/5137916 to your computer and use it in GitHub Desktop.
Save rosshanney/5137916 to your computer and use it in GitHub Desktop.
Close GCE tooltips on click / tap
<?php
/*
Plugin name: Close GCE tooltips on click / tap
*/
function gce_close_tooltips_on_click() {
if ( defined( 'GCE_VERSION' ) ) {
?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('body').on('click', '.gce-event-info', function(){
jQuery('.qtip').hide();
});
});
</script>
<?php
}
}
add_action( 'wp_footer', 'gce_close_tooltips_on_click' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment