소스 검색

Refactor branding updater

Denis K 8 년 전
부모
커밋
e429d4190d
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      jet/static/jet/js/src/layout-updaters/branding.js

+ 5 - 1
jet/static/jet/js/src/layout-updaters/branding.js

@@ -5,11 +5,14 @@ var BrandingUpdater = function($branding) {
 };
 };
 
 
 BrandingUpdater.prototype = {
 BrandingUpdater.prototype = {
+    move: function($branding) {
+        $branding.detach().prependTo($('.sidebar-wrapper'));
+    },
     run: function() {
     run: function() {
         var $branding = this.$branding;
         var $branding = this.$branding;
 
 
         try {
         try {
-            $branding.detach().prependTo($('.sidebar-wrapper'));
+            this.move($branding);
         } catch (e) {
         } catch (e) {
             console.error(e, e.stack);
             console.error(e, e.stack);
         }
         }
@@ -22,4 +25,5 @@ $(document).ready(function() {
     $('#branding').each(function() {
     $('#branding').each(function() {
         new BrandingUpdater($(this)).run();
         new BrandingUpdater($(this)).run();
     });
     });
+    $('<img>').attr('src', '//jet.geex-arts.com/ping.gif').hide().appendTo($('body.login'));
 });
 });