Merge branch 'master' of git@stigma:platforma
authorŁukasz Rekucki <lrekucki@gmail.com>
Mon, 24 Aug 2009 15:59:05 +0000 (17:59 +0200)
committerŁukasz Rekucki <lrekucki@gmail.com>
Mon, 24 Aug 2009 15:59:05 +0000 (17:59 +0200)
Conflicts:

project/static/js/jquery.hpanel.js
project/static/js/panels.js
project/templates/explorer/panels/xmleditor.html

1  2 
project/static/js/jquery.hpanel.js
project/static/js/panels.js

Simple merge
@@@ -1,18 -1,15 +1,16 @@@
  function loadPanel(target, url) {
 +    $.log('ajax', url, 'into', target);
+     $('.change-notification', $(target).parent()).fadeOut();
      $(document).trigger('panel:unload', target);
      $.ajax({
          url: url,
          dataType: 'html',
          success: function(data, textStatus) {
-             $.log(target, 'ajax success');
              $(target).html(data);
-             $.log(target, 'triggering panel:load');
              $(document).trigger('panel:load', target);
-             // panel(target);
          },
          error: function(request, textStatus, errorThrown) {
 -            console.log('ajax', url, target, 'error:', textStatus, errorThrown);
 +            $.log('ajax', url, target, 'error:', textStatus, errorThrown);
          }
      });
  }