Colaboração em tempo real usando o TowTruck

TwoTruck é um novo serviço desenvolvido pela Mozilla que permite a você colaborar em tempo real.

Para obter detalhes sobre como funciona, verifique esta página: https://towtruck.mozillalabs.com/

Pode ser útil se você tiver que lidar remotamente com clientes.
O código a seguir adiciona um botão à Barra de administração superior e inicia o script.

Para fazer funcionar, adicione este snippet ao seu functions.php:

/**
* ADD TOWTRUCK TO THE TOP ADMIN BAR

*/


//Add button in admin top bar:
function add_tow_truck( $admin_bar ) {
$admin_bar
->add_menu( array(
'id' => __( 'tow-truck' ),
'title' => 'Get Help',
'href' => '#',
'meta' => array(
'onclick' => 'TowTruck(this); return false;'
)
) );
}
add_action
( 'admin_bar_menu', 'add_tow_truck' );

//Load script when admin bar is showing:
function load_tow_truck_script() {
if ( is_admin_bar_showing() )
wp_enqueue_script
( 'TowTruck', 'https://towtruck.mozillalabs.com/towtruck.js' );
}
add_action
( 'wp_enqueue_scripts', 'load_tow_truck_script' );
add_action
( 'admin_enqueue_scripts', 'load_tow_truck_script' );