mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-10-04 01:59:18 +02:00
Revert "Move jquery initialisation/startup logic at the end/down"
This reverts commit eabf763c41
.
It is not needed anymore, apparently.
This commit is contained in:
parent
64ed6e96ee
commit
2790113199
1 changed files with 8 additions and 8 deletions
|
@ -34,6 +34,13 @@ 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';
|
||||||
|
|
||||||
|
@ -3761,7 +3768,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
|
||||||
*/
|
*/
|
||||||
|
@ -5664,10 +5671,3 @@ 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();
|
|
||||||
});
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue