Move jquery initialisation/startup logic at the end/down

This commit is contained in:
rugk 2024-10-16 22:27:50 +00:00
parent ff3a9eea79
commit eabf763c41

View file

@ -34,13 +34,6 @@ jQuery.fn.draghover = function() {
}); });
}; };
// main application start, called when DOM is fully loaded
jQuery(document).ready(function() {
'use strict';
// run main controller
$.PrivateBin.Controller.init();
});
jQuery.PrivateBin = (function($, RawDeflate) { jQuery.PrivateBin = (function($, RawDeflate) {
'use strict'; 'use strict';
@ -3768,7 +3761,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
/** /**
* Clear the password input in the top navigation * Clear the password input in the top navigation
* *
* @name TopNav.clearPasswordInput * @name TopNav.clearPasswordInput
* @function * @function
*/ */
@ -5671,3 +5664,10 @@ jQuery.PrivateBin = (function($, RawDeflate) {
Controller: Controller Controller: Controller
}; };
})(jQuery, RawDeflate); })(jQuery, RawDeflate);
// main application start, called when DOM is fully loaded
jQuery(document).ready(function() {
'use strict';
// run main controller
$.PrivateBin.Controller.init();
});