PluginProbe
Boxzilla – WordPress Popup Builder / trunk
Boxzilla – WordPress Popup Builder vtrunk
3.4.11 3.4.10 3.4.9 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 trunk 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 All 72 releases
boxzilla / assets / js / src / preload.js

preload.js in Boxzilla – WordPress Popup Builder trunk, at assets/js/src/preload.js

14 lines 369 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 var boxzilla_queue = []
2
3 // create a temporary global Boxzilla object
4 // this allows these methods to be called before the Boxzilla script itself has loaded
5 var Boxzilla = {};
6 ['on', 'off', 'toggle', 'show'].forEach((m) => {
7 Boxzilla[m] = function () {
8 boxzilla_queue.push([m, arguments])
9 }
10 })
11
12 window.Boxzilla = Boxzilla
13 window.boxzilla_queue = boxzilla_queue
14