Loading.js 165 B

1234567
  1. function completeLoading() {
  2. setTimeout(function() {
  3. Ext.get('loading').remove();
  4. Ext.get('loading-mask').fadeOut({ remove: true });
  5. }, 250);
  6. }