PluginProbe
Booking Calendar / 11.2
Booking Calendar v11.2
11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 All 203 releases
booking / includes / __js / client / wpbc / wpbc_ready_event.js

wpbc_ready_event.js in Booking Calendar 11.2, at includes/__js/client/wpbc/wpbc_ready_event.js

11 lines 336 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 try {
2 var ev = (typeof CustomEvent === 'function') ? new CustomEvent( 'wpbc-ready' ) : document.createEvent( 'Event' );
3 if ( ev.initEvent ) {
4 ev.initEvent( 'wpbc-ready', true, true );
5 }
6 document.dispatchEvent( ev );
7 console.log( 'wpbc-ready' );
8 } catch ( e ) {
9 console.error( "WPBC event 'wpbc-ready' failed!", e );
10 }
11