소스 검색

Move jquery initialisation/startup logic at the end/down

rugk 1 년 전
부모
커밋
eabf763c41
1개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제
  1. 8 8
      js/privatebin.js

+ 8 - 8
js/privatebin.js

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