1window.bioEp = {
2 // Private variables
3 bgEl: {},
4 popupEl: {},
5 closeBtnEl: {},
6 shown: false,
7 overflowDefault: "visible",
8 transformDefault: "",
9
10 // Popup options
11 width: 400,
12 height: 220,
13 html: "",
14 css: "",
15 fonts: [],
16 delay: 5,
17 showOnDelay: false,
18 cookieExp: 30,
19
20 // Handle creating, reading, and deleting cookies
21 cookieManager: {
22 // Create a cookie
23 create: function() {},
24
25 // Get the value of a cookie
26 get: function() {},
27
28 // Delete a cookie
29 erase: function() {}
30 },
31
32 // Check for cookie
33 checkCookie: function() {},
34
35 // Add font stylesheets and CSS for the popup
36 addCSS: function() {},
37
38 // Add the popup to the page
39 addPopup: function() {},
40
41 // Show the popup
42 showPopup: function() {},
43
44 // Hide the popup
45 hidePopup: function() {},
46
47 // Handle scaling the popup
48 scalePopup: function() {},
49
50 // Load event listeners for the popup
51 loadEvents: function() {},
52
53 // Set user defined options for the popup
54 setOptions: function() {},
55
56 // Ensure the DOM has loaded
57 domReady: function() {}
58
59 // Initialize
60 init: function() {}
61}