Commit c3b585c0 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Add spacer gif for old IE-s.

For IE8+ and other browsers the ExtJS 4 framework supplies a data-uri,
but for IE 6 and 7 it defaults to an URL pointing to sencha.com,
which will cause problems when offline.

Refs #511
parent 11906663
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -7,6 +7,11 @@ Ext.Loader.setConfig({
    }
});

// Avoid downloading spacer gif from sencha.com in older IE-s.
if (Ext.isIE6 || Ext.isIE7) {
    Ext.BLANK_IMAGE_URL = 'resources/images/s.gif';
}

Ext.require('Ext.form.field.Trigger');
Ext.require('Ext.tab.Panel');
Ext.require('Ext.grid.column.Action');
+43 B
Loading image diff...