Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-paypal-payments
/
modules
/
ppcp-button
/
resources
/
js
/
modules
:
ButtonModuleWatcher.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
class ButtonModuleWatcher { constructor() { this.contextBootstrapRegistry = {}; this.contextBootstrapWatchers = []; } watchContextBootstrap( callable ) { this.contextBootstrapWatchers.push( callable ); Object.values( this.contextBootstrapRegistry ).forEach( callable ); } registerContextBootstrap( context, handler ) { this.contextBootstrapRegistry[ context ] = { context, handler, }; // Call registered watchers for ( const callable of this.contextBootstrapWatchers ) { callable( this.contextBootstrapRegistry[ context ] ); } } } window.ppcpResources = window.ppcpResources || {}; const buttonModuleWatcher = ( window.ppcpResources.ButtonModuleWatcher = window.ppcpResources.ButtonModuleWatcher || new ButtonModuleWatcher() ); export default buttonModuleWatcher;