%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/plugins/event-tickets/src/resources/js/v2/ |
Current File : /var/www/html/higroup/wp-content/plugins/event-tickets/src/resources/js/v2/tickets-page.js |
/* global tribe */ /** * Makes sure we have all the required levels on the Tribe Object * * @since 5.0.3 * * @type {PlainObject} */ tribe.tickets = tribe.tickets || {}; /** * Configures ET tickets page Object in the Global Tribe variable * * @since 5.0.3 * * @type {PlainObject} */ tribe.tickets.page = {}; /** * Initializes in a Strict env the code that manages the plugin tickets page. * * @since 5.0.3 * * @param {PlainObject} $ jQuery * @param {PlainObject} obj tribe.tickets.page * * @return {void} */ ( function( $, obj ) { 'use strict'; const $document = $( document ); /* * Ticket Page Selectors. * * @since 5.0.3 */ obj.selectors = { container: '.tribe-tickets__tickets-page-wrapper', }; /** * Binds events for container. * * @since 5.0.3 * * @param {jQuery} $container jQuery object of object of the tickets page container. * * @return {void} */ obj.bindEvents = function( $container ) { $document.trigger( 'beforeSetup.tribeTicketsPage', [ $container ] ); $document.trigger( 'afterSetup.tribeTicketsPage', [ $container ] ); }; /** * Handles the initialization of the tickets page events when Document is ready. * * @since 5.0.3 * * @return {void} */ obj.ready = function() { const $ticketsPage = $document.find( obj.selectors.container ); // Bind events for each tickets block. $ticketsPage.each( function( index, block ) { obj.bindEvents( $( block ) ); } ); }; // Configure on document ready. $( obj.ready ); } )( jQuery, tribe.tickets.page );