PluginProbe
MaxButtons – Create buttons / 6.3
MaxButtons – Create buttons v6.3
6.23 6.24 6.25 6.26 6.26.1 6.27 6.28 6.3 6.4 6.5 6.6 6.7 6.8 6.9 7.0 7.1 7.1.1 7.1.2 7.1.3 7.10 7.11 7.13 7.13.1 7.13.2 7.13.3 All 100 releases
maxbuttons / js / init.js

init.js in MaxButtons – Create buttons 6.3, at js/init.js

26 lines 476 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2
3 jQuery(document).ready(function($) {
4
5 function runMaxInit()
6 {
7 if (typeof window.maxFoundry === 'undefined')
8 window.maxFoundry = {};
9
10 window.maxFoundry.maxadmin = new maxAdmin();
11 window.maxFoundry.maxadmin.init();
12
13 window.maxFoundry.maxmodal = new maxModal();
14 window.maxFoundry.maxmodal.init();
15
16 window.maxFoundry.maxcollection = new maxCollection();
17 window.maxFoundry.maxcollection.init();
18
19
20
21 }
22
23 runMaxInit();
24
25 }); /* END OF JQUERY */
26