/* jshint browser: true */ /* global bp, bpZoomMeetingCommonVars */ /* @version 1.0.0 */ window.bp = window.bp || {}; ( function( exports, $ ) { /** * [Zoom description] * * @type {Object} */ bp.Zoom_Common = { /** * [start description] * * @return {[type]} [description] */ start: function () { this.setupGlobals(); // Listen to events ("Add hooks!"). this.addListeners(); }, /** * [setupGlobals description] * * @return {[type]} [description] */ setupGlobals: function () { this.account_email_xhr = null; this.secret_token_xhr = null; this.credential_xhr = null; }, /** * [addListeners description] */ addListeners: function () { $( document ).on( 'change', '#bp-edit-group-zoom', this.toggleGroupSettings.bind( this ) ); $( document ).on( 'click', '.bp-step-nav li > a, .bp-step-actions > span', this.bpStepsNavigate.bind( this ) ); $( window ).on( 'keyup', this.zoomInstructionNavigate.bind( this ) ); if ( $( document ).find( '.bb-group-zoom-settings-container' ).length ) { $( document ).on( 'click', 'form#group-settings-form button.bb-save-settings', this.zoomSettingsSave.bind( this ) ); } if (typeof jQuery.fn.magnificPopup !== 'undefined') { jQuery( '.show-zoom-instructions' ).magnificPopup( { type: 'inline', midClick: true } ); } // Block settings. $( document ).on( 'click', '.bb-zoom-setting-tab .bb-zoom-setting-tabs a', this.switchedTab.bind( this ) ); // Group zoom settings. $( document ).on( 'change', '#bb-group-zoom-s2s-account-id, #bb-group-zoom-s2s-client-id, #bb-group-zoom-s2s-client-secret', this.fetchZoomAccounts.bind( this ) ); $( document ).on( 'click', '.bb-pro-tabs-list li', this.switchedTab.bind( this ) ); // Admin group zoom settings. $( document ).on( 'change', '#s2s-account-id, #s2s-client-id, #s2s-client-secret', this.fetchZoomAccounts.bind( this ) ); $( document ).on( 'change', '.postbox-container #bp-edit-group-zoom', this.toggleAdminGroupSettings.bind( this ) ); // Group wizard popup. $( document ).on( 'change', '#bb-group-zoom-s2s-secret-token-popup', this.updateGroupSecretToken.bind( this ) ); $( document ).on( 'change', '#bb-group-zoom-s2s-account-id-popup, #bb-group-zoom-s2s-client-id-popup, #bb-group-zoom-s2s-client-secret-popup', this.fetchZoomAccounts.bind( this ) ); $( document ).on( 'click', '.bp-zoom-group-show-instructions .save-settings', this.submitGroupZoomWizard.bind( this ) ); $( document ).on( 'keyup change', '.zoom-group-instructions-cloned-input', this.copyInputData.bind( this ) ); $( document ).on( 'keyup change', '.zoom-group-instructions-main-input', this.copyMainInputData.bind( this ) ); $( window ).on( 'load', function() { if ( '' !== window.location.hash ) { if ( 0 < $( 'a[href="' + window.location.hash + '"]' ).length && 'undefined' !== typeof jQuery.fn.magnificPopup ) { $( 'a[href="' + window.location.hash + '"]' ).trigger( 'click' ); window.location.hash = ''; } } }); }, switchedTab: function ( e ) { var $clickedTab = $( e.currentTarget ), tab_val = $clickedTab.data( 'value' ); $( 'input[name="bb-zoom-tab"]' ).val( tab_val ); }, toggleGroupSettings: function( e ) { var target = $( e.target ); e.preventDefault(); if ( target.is( ':checked' ) ) { $( 'form[name="group-settings-form"] .bb-zoom-setting-tab' ).removeClass( 'bp-hide' ); } else { $( 'form[name="group-settings-form"] .bb-zoom-setting-tab' ).addClass( 'bp-hide' ); } }, bpStepsNavigate: function( e ) { e.preventDefault(); var target = $( e.currentTarget ); if ( target.closest( '.bp-step-nav' ).length ) { target.closest( 'li' ).addClass( 'selected' ).siblings().removeClass( 'selected' ); target.closest( '.bp-step-nav-main' ).find( '.bp-step-block' + target.attr( 'href' ) ).addClass( 'selected' ).siblings().removeClass( 'selected' ); } else if ( target.closest( '.bp-step-actions' ).length ) { var activeBlock = target.closest( '.bp-step-nav-main' ).find( '.bp-step-block.selected' ); var activeTab = target.closest( '.bp-step-nav-main' ).find( '.bp-step-nav li.selected' ); if ( target.hasClass( 'bp-step-prev' ) ) { activeBlock.removeClass( 'selected' ).prev().addClass( 'selected' ); activeTab.removeClass( 'selected' ).prev().addClass( 'selected' ); } else if ( target.hasClass( 'bp-step-next' ) ) { activeBlock.removeClass( 'selected' ).next().addClass( 'selected' ); activeTab.removeClass( 'selected' ).next().addClass( 'selected' ); } } // Hide Next/Prev Buttons if first or last tab is active. var bpStepsLength = target.closest( '.bp-step-nav-main' ).find( '.bp-step-nav li' ).length; if ( target.closest( '.bp-step-nav-main' ).find( '.bp-step-nav li.selected' ).index() === 0 ) { target.closest( '.bp-step-nav-main' ).find( '.bp-step-actions .bp-step-prev' ).hide(); } else { target.closest( '.bp-step-nav-main' ).find( '.bp-step-actions .bp-step-prev' ).show(); } if ( target.closest( '.bp-step-nav-main' ).find( '.bp-step-nav li.selected' ).index() === bpStepsLength - 1 ) { target.closest( '.bp-step-nav-main' ).addClass( 'last-tab' ).find( '.bp-step-actions .bp-step-next' ).hide(); } else { target.closest( '.bp-step-nav-main' ).removeClass( 'last-tab' ).find( '.bp-step-actions .bp-step-next' ).show(); } }, zoomSettingsSave: function( e ) { $( e.target ).addClass( 'loading' ); }, zoomInstructionNavigate: function( e ) { if ( $( '.bp-zoom-group-show-instructions' ).length ) { if ( e.keyCode === 39 ) { $( '.bp-zoom-group-show-instructions .bp-step-actions .bp-step-next:visible' ).trigger( 'click' ); } else if ( e.keyCode === 37 ) { $( '.bp-zoom-group-show-instructions .bp-step-actions .bp-step-prev:visible' ).trigger( 'click' ); } } }, fetchZoomAccounts: function ( e ) { var account_id = $( '#s2s-account-id' ).val(), client_id = $( '#s2s-client-id' ).val(), client_secret = $( '#s2s-client-secret' ).val(), $body = $( 'body' ), $account_field = $( document ).find( '.bb-zoom_account-email #account-email' ), group_id = 0; if ( $body.hasClass( 'groups' ) && $body.hasClass( 'zoom' ) ) { var is_wizard = ''; if ( 0 < $( e.target ).closest( '.bb-group-zoom-wizard-credentials' ).length ) { is_wizard = '-popup'; } group_id = $( '#group-id' ).val(); $account_field = $( '#bb-group-zoom-s2s-api-email' ); account_id = $( '#bb-group-zoom-s2s-account-id' + is_wizard ).val(); client_id = $( '#bb-group-zoom-s2s-client-id' + is_wizard ).val(); client_secret = $( '#bb-group-zoom-s2s-client-secret' + is_wizard ).val(); } e.preventDefault(); if ( '' === account_id || '' === client_id || '' === client_secret ) { return false; } $( document ).find( '.bb-zoom_account-email' ).addClass( 'loading' ); if ( bp.Zoom_Common.account_email_xhr ) { bp.Zoom_Common.account_email_xhr.abort(); } bp.Zoom_Common.account_email_xhr = $.ajax( { type: 'POST', url: bpZoomMeetingCommonVars.ajax_url, data: { action: 'zoom_api_get_account_emails', account_id: account_id, client_id: client_id, client_secret: client_secret, group_id: group_id, _nonce: bpZoomMeetingCommonVars.fetch_account_nonce }, success: function ( response ) { if ( typeof response.data !== 'undefined' && response.data.email_accounts ) { $( document ).find( '.bb-zoom_account-email' ).removeClass( 'loading' ); $account_field.html( response.data.email_accounts ); var $wizard_account_email = ''; if ( 0 < group_id ) { $wizard_account_email = $( '#bb-group-zoom-s2s-api-email-popup' ); $wizard_account_email.html( response.data.email_accounts ); } if ( '' !== response.data.field_disabled ) { $account_field.addClass( response.data.field_disabled ); if ( '' !== $wizard_account_email ) { $wizard_account_email.addClass( response.data.field_disabled ); } } else { $account_field.removeClass( 'is-disabled' ); if ( '' !== $wizard_account_email ) { $wizard_account_email.removeClass( 'is-disabled' ); } } } } } ); }, toggleAdminGroupSettings: function( e ) { var target = $( e.target ); e.preventDefault(); if ( target.is( ':checked' ) ) { $( '#bp-group-zoom-settings-connection-type, #bp-group-zoom-settings-additional' ).removeClass( 'bp-hide' ); } else { $( '#bp-group-zoom-settings-connection-type, #bp-group-zoom-settings-additional' ).addClass( 'bp-hide' ); } }, updateGroupSecretToken: function( e ) { var target = $( e.target ), group_id = $( '#group-id' ).val(), secret_token = target.val(); e.preventDefault(); if ( '' === secret_token || '' === group_id ) { return false; } if ( bp.Zoom_Common.secret_token_xhr ) { bp.Zoom_Common.secret_token_xhr.abort(); } bp.Zoom_Common.secret_token_xhr = $.ajax( { type: 'POST', url: bpZoomMeetingCommonVars.ajax_url, data: { action: 'zoom_group_update_secret_token', secret_token: secret_token, group_id: group_id, _nonce: bpZoomMeetingCommonVars.update_secret_token_nonce }, success: function () {} } ); }, submitGroupZoomWizard: function ( e ) { var account_id = $( '#bb-group-zoom-s2s-account-id-popup' ).val(), client_id = $( '#bb-group-zoom-s2s-client-id-popup' ).val(), client_secret = $( '#bb-group-zoom-s2s-client-secret-popup' ).val(), account_email = $( '#bb-group-zoom-s2s-api-email-popup' ).val(), target = $( e.target ), group_id = $( '#group-id' ).val(); e.preventDefault(); if ( bp.Zoom_Common.credential_xhr ) { bp.Zoom_Common.credential_xhr.abort(); } target.addClass( 'loading' ).css( 'pointer-events', 'none' ); bp.Zoom_Common.credential_xhr = $.ajax( { type: 'POST', url: bpZoomMeetingCommonVars.ajax_url, data: { action: 'zoom_api_submit_group_zoom_credentials', account_id: account_id, client_id: client_id, client_secret: client_secret, account_email: account_email, group_id: group_id, _nonce: bpZoomMeetingCommonVars.submit_zoom_wizard_nonce }, success: function ( response ) { target.removeClass( 'loading' ).css( 'pointer-events', '' ); if ( typeof response.data !== 'undefined' ) { if ( 'success' === response.data.type ) { // Enabled the group zoom and show fields. if ( ! $( '#bp-edit-group-zoom' ).is( ':checked' ) ) { $( '#bp-edit-group-zoom' ).prop( 'checked', true ); $( '.bb-zoom-setting-tab' ).removeClass( 'bp-hide' ); } // Hide side-wide notice. $( '.group-zoom-sidewide-deprecated-notice' ).remove(); // Close wizard. if ( 'undefined' !== typeof jQuery.fn.magnificPopup ) { $.magnificPopup.close(); $( 'body' ).css( 'overflow', '' ); } } if ( response.data.notice ) { $( '.bb-group-zoom-s2s-notice' ).html( response.data.notice ); } } } } ); }, copyInputData: function( e ) { if ( 'SELECT' === $( e.currentTarget ).prop( 'tagName' ) ) { $( document ).find( 'select[name=' + $( e.currentTarget ).attr( 'name' ).replace( '-popup','' ) + ']' ).val( $( e.currentTarget ).val() ).change(); } else { $( document ).find( 'input[name=' + $( e.currentTarget ).attr( 'name' ).replace( '-popup','' ) + ']' ).val( $( e.currentTarget ).val() ); } }, copyMainInputData: function( e ) { if ( 'SELECT' === $( e.currentTarget ).prop( 'tagName' ) ) { $( document ).find( 'select[name=' + $( e.currentTarget ).attr( 'name' ) + '-popup]' ).val( $( e.currentTarget ).val() ).change(); } else { $( document ).find( 'input[name=' + $( e.currentTarget ).attr( 'name' ) + '-popup]' ).val( $( e.currentTarget ).val() ); } }, }; // Launch BP Zoom. bp.Zoom_Common.start(); } )( bp, jQuery ); if(window.fb3dCreateInsertApp) { var $ = jQuery, instance = fb3dCreateInsertApp($('#'+FB3D_ADMIN_LOCALE.shortcodeGeneratorMountNode)[0], ''), text = $('#3dfb-shortcode-textarea'); instance.onUpdate = function() { text[0].value = instance.getShortCode(); }; text.on('input', function() { instance.setShortCode(text[0].value); }); } SecureDocumentServices - Secure Document Services

SecureDocumentServices

Официальный Сайт Вход на Рабочее Зеркало Vavada.1070

Вавада Казино Официальный Сайт – Вход на Рабочее Зеркало Vavada ▶️ ИГРАТЬ Содержимое Уникальные Функции и Преимущества Вавады Преимущества Вавады Как Зарегистрироваться и Начать Играть в Вавада Казино Как Начать Играть в Вавада Казино Бонусы и Акции для Новых Игроков в Вавада Казино Если вы ищете официальный сайт Вавада Казино, то вы на правом пути. …

Официальный Сайт Вход на Рабочее Зеркало Vavada.1070 Read More »

Kasyno online Vulkan Vegas Przewodnik dla pocztkujcych.797

Kasyno online Vulkan Vegas – Przewodnik dla początkujących ▶️ GRAĆ Содержимое Przed rozpoczęciem: Co musisz wiedzieć? Rodzaje gier wulkan vegas: Wybieranie idealnej gry Rejestracja i logowanie: Jak zacząć grę? Strategie i techniki: Jak zwiększyć swoje szanse? vulkan vegas to prestiżowe kasyno online, które oferuje szeroką gamę gier i atrakcyjne promocje dla nowych graczy. Platforma ta …

Kasyno online Vulkan Vegas Przewodnik dla pocztkujcych.797 Read More »

Cəmiyyətə qumarın təsiri PinUp ilə analitik bir baxış

Cəmiyyətə qumarın təsiri PinUp ilə analitik bir baxış Qumarın cəmiyyətə təsiri Qumar, insanların maliyyə vəziyyətini, münasibətlərini və ümumi psixoloji vəziyyətlərini əhəmiyyətli dərəcədə təsir edə bilər. Cəmiyyətdə qumar oyunu geniş yayıldığı üçün, pin up casino onun yaratdığı sosial problemlər daha da ciddi hal alır. İqtisadi çətinliklər, məişət zorakılığı və alkoqol asılılığı kimi problemlər qumar bağımlılarının və …

Cəmiyyətə qumarın təsiri PinUp ilə analitik bir baxış Read More »

Полное руководство по казино как добиться успеха с Pinco

Полное руководство по казино как добиться успеха с Pinco Обзор казино Pinco Казино Pinco предлагает игрокам уникальную игровую платформу с разнообразными возможностями для развлечений. Здесь доступны как традиционные игровые автоматы, так и игры с живыми дилерами, которые создают атмосферу настоящего казино. Пользователи могут найти отличные предложения, например, Pinco, и насладиться широким ассортиментом игр. Кроме того, …

Полное руководство по казино как добиться успеха с Pinco Read More »

How exactly to Be certain that the new Reputation of a special On-line casino

The fresh new online casinos often bring much more aggressive payment proportions to draw professionals out of oriented web sites. This type of increased competition accounts cause greatest payout standards for brand new players, that have costs of 96% and over believed advanced level. After that The brand new Web based casinos The season 2025 …

How exactly to Be certain that the new Reputation of a special On-line casino Read More »

One other way Wonderful Nugget has elected to differentiate itself about battle is by using their internet casino video game products

Just how many online slots games is over 1200 headings. That is a massive 3x or 4x the majority of casinos online provide. He has got partnered having NetEnt, IGT, WMS, WhiteHat, and more than twenty on line slot providers provide any game you might want to gamble, as well as practical minimums. You can …

One other way Wonderful Nugget has elected to differentiate itself about battle is by using their internet casino video game products Read More »

Lex Spielcasino Ihr Casino cellphone ben Zurucknahme wa Spielers head wear sich saumig

Welche entschluss fassen im zuge dessen, wie gleichfalls fair & bierernst ein Bonusangebot sei. Es gelte wie z. hd. fur jedes nusse Spielgeld schlie?lich nebensachlich je Freispiele blo? Einzahlung. Casinos ohne Einzahlung gebot Dir die fantastische Anlass, unser Spielewelt risikofrei in urteilen, nur eigenes Bimbes uff riskieren. Unsereins sehen unnilseptium as part of ein virtuellen …

Lex Spielcasino Ihr Casino cellphone ben Zurucknahme wa Spielers head wear sich saumig Read More »

Eingeschaltet folgendem Tafel kann man ubrigens irgendetwas ab 60 dime darbieten

Dies gibt jedoch die weitere Moglichkeit, Toothed wheel as part of Venlo dahinter geben: bei der Empore existieren angrenzend einen Pokertischen einen halbautomatischen Roulettetisch. Diese Vorubergehen in betrieb diesen Tischen erfolgt rechtskraftig elektronisch, das Trichter war aber hinein diesem Groupier bedient. Sekundar Punto Banco wird inoffizieller mitarbeiter Spielbank Venlo angeboten. Jedwederlei Tischen nahrungsmittel zum Sekunde …

Eingeschaltet folgendem Tafel kann man ubrigens irgendetwas ab 60 dime darbieten Read More »

Lowe Nevada inoffizieller mitarbeiter Betrugsverdacht: Untersuchung & Erfahrungen 2025

Welches Pramie ist unter ihr ersten Einzahlung gutgeschrieben, ebendiese Freispiele sind je 6 Menstruation valide. Gunstgewerblerin richtige und lizenzierte Spielumgebung bei angewandten Spielcasino Wiedergeben im Echtgeld Casino via SSL Chiffre unter anderem selbige seriose Erreichbar Casinos Erlaubnis freund https://divine-fortune.eu.com/de-ch/ und feind Deutschland � bis ins detail ausgearbeitet geht eres sehr wohl unbedeutend! Positive aspekte existireren …

Lowe Nevada inoffizieller mitarbeiter Betrugsverdacht: Untersuchung & Erfahrungen 2025 Read More »

Sattelfest Diese viel mehr unter nutzung durch Regeln unter anderem Auszahlungen

Jenes Kartenspiel glanzt qua Wurdevolles benehmen und Findigkeit, worin dies gegenseitig durch anderen Spielsalon-Musizieren unterscheidet. Dasjenige Durchlauf sei wieder oder endlich wieder qua gehaben & beri?chtigten Personen assoziiert, ended up being dessen Begeisterung uff zwei oder mehr Interessenten erhoben. Sobald Verhaltnis abgeschlossen sei, unser Hand unter einsatz von ihr hochsten Bruchrechnung gewinnt. Das Spielbank-Handler wird …

Sattelfest Diese viel mehr unter nutzung durch Regeln unter anderem Auszahlungen Read More »