mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-25 22:14:32 +00:00
Restricts hacks and workarounds to IE < 9
This commit is contained in:
parent
66a91a6e3a
commit
d106c12aa2
File diff suppressed because one or more lines are too long
@ -52,7 +52,9 @@ MUI.extend({
|
|||||||
},
|
},
|
||||||
|
|
||||||
ieSupport: 'excanvas', // Makes it easier to switch between Excanvas and Moocanvas for testing
|
ieSupport: 'excanvas', // Makes it easier to switch between Excanvas and Moocanvas for testing
|
||||||
|
|
||||||
|
ieLegacySupport: Browser.Engine.trident && Browser.version < 9,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
||||||
Function: updateContent
|
Function: updateContent
|
||||||
@ -533,7 +535,7 @@ Element.implement({
|
|||||||
this.setStyle('position','relative');
|
this.setStyle('position','relative');
|
||||||
position = 'relative';
|
position = 'relative';
|
||||||
}
|
}
|
||||||
if(Browser.Engine.trident){
|
if(MUI.ieLegacySupport){
|
||||||
parent.setStyle('height',parent.getStyle('height'));
|
parent.setStyle('height',parent.getStyle('height'));
|
||||||
}
|
}
|
||||||
var coords = this.getPosition(parent);
|
var coords = this.getPosition(parent);
|
||||||
@ -794,7 +796,7 @@ $extend(Asset, {
|
|||||||
script.addEvents({
|
script.addEvents({
|
||||||
load: load,
|
load: load,
|
||||||
readystatechange: function(){
|
readystatechange: function(){
|
||||||
if (Browser.Engine.trident && ['loaded', 'complete'].contains(this.readyState))
|
if (MUI.ieLegacySupport && ['loaded', 'complete'].contains(this.readyState))
|
||||||
load();
|
load();
|
||||||
}
|
}
|
||||||
}).setProperties(properties);
|
}).setProperties(properties);
|
||||||
@ -1058,7 +1060,7 @@ MUI.Themes = {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Delay gives the stylesheets time to take effect. IE6 needs more delay.
|
// Delay gives the stylesheets time to take effect. IE6 needs more delay.
|
||||||
if (Browser.Engine.trident){
|
if (MUI.ieLegacySupport){
|
||||||
this.redraw.delay(1250, this);
|
this.redraw.delay(1250, this);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1620,7 +1622,7 @@ MUI.Window = new Class({
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Fix a mouseover issue with gauges in IE7
|
// Fix a mouseover issue with gauges in IE7
|
||||||
if ( Browser.Engine.trident && options.shape == 'gauge') {
|
if ( MUI.ieLegacySupport && options.shape == 'gauge') {
|
||||||
this.windowEl.setStyle('backgroundImage', 'url(../images/spacer.gif)');
|
this.windowEl.setStyle('backgroundImage', 'url(../images/spacer.gif)');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1793,7 +1795,7 @@ MUI.Window = new Class({
|
|||||||
'duration': 350,
|
'duration': 350,
|
||||||
transition: Fx.Transitions.Sine.easeInOut,
|
transition: Fx.Transitions.Sine.easeInOut,
|
||||||
onComplete: function(){
|
onComplete: function(){
|
||||||
if (Browser.Engine.trident){
|
if (MUI.ieLegacySupport){
|
||||||
this.drawWindow();
|
this.drawWindow();
|
||||||
}
|
}
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
@ -1883,7 +1885,7 @@ MUI.Window = new Class({
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// IE cannot handle both element opacity and VML alpha at the same time.
|
// IE cannot handle both element opacity and VML alpha at the same time.
|
||||||
if (Browser.Engine.trident){
|
if (MUI.ieLegacySupport){
|
||||||
this.drawWindow(false);
|
this.drawWindow(false);
|
||||||
}
|
}
|
||||||
this.opacityMorph.start({
|
this.opacityMorph.start({
|
||||||
@ -1906,7 +1908,7 @@ MUI.Window = new Class({
|
|||||||
|
|
||||||
if (this.options.type == 'window'){
|
if (this.options.type == 'window'){
|
||||||
windowEl.addEvent('mousedown', function(e) {
|
windowEl.addEvent('mousedown', function(e) {
|
||||||
if (Browser.Engine.trident) {
|
if (MUI.ieLegacySupport) {
|
||||||
new Event(e).stop();
|
new Event(e).stop();
|
||||||
}
|
}
|
||||||
MUI.focusWindow(windowEl);
|
MUI.focusWindow(windowEl);
|
||||||
@ -1940,7 +1942,7 @@ MUI.Window = new Class({
|
|||||||
e = new Event(e).stop();
|
e = new Event(e).stop();
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
|
|
||||||
if (Browser.Engine.trident) {
|
if (MUI.ieLegacySupport) {
|
||||||
this.titleBarEl.addEvent('mousedown', function(e) {
|
this.titleBarEl.addEvent('mousedown', function(e) {
|
||||||
this.titleEl.setCapture();
|
this.titleEl.setCapture();
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
@ -1977,7 +1979,7 @@ MUI.Window = new Class({
|
|||||||
$('windowUnderlay').show();
|
$('windowUnderlay').show();
|
||||||
}
|
}
|
||||||
if (this.iframeEl) {
|
if (this.iframeEl) {
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
this.iframeEl.setStyle('visibility', 'hidden');
|
this.iframeEl.setStyle('visibility', 'hidden');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1990,7 +1992,7 @@ MUI.Window = new Class({
|
|||||||
$('windowUnderlay').hide();
|
$('windowUnderlay').hide();
|
||||||
}
|
}
|
||||||
if ( this.iframeEl ){
|
if ( this.iframeEl ){
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
this.iframeEl.setStyle('visibility', 'visible');
|
this.iframeEl.setStyle('visibility', 'visible');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -2124,7 +2126,7 @@ MUI.Window = new Class({
|
|||||||
resizeOnStart: function(){
|
resizeOnStart: function(){
|
||||||
$('windowUnderlay').show();
|
$('windowUnderlay').show();
|
||||||
if (this.iframeEl){
|
if (this.iframeEl){
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
this.iframeEl.setStyle('visibility', 'hidden');
|
this.iframeEl.setStyle('visibility', 'hidden');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -2151,7 +2153,7 @@ MUI.Window = new Class({
|
|||||||
resizeOnComplete: function(){
|
resizeOnComplete: function(){
|
||||||
$('windowUnderlay').hide();
|
$('windowUnderlay').hide();
|
||||||
if (this.iframeEl){
|
if (this.iframeEl){
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
this.iframeEl.setStyle('visibility', 'visible');
|
this.iframeEl.setStyle('visibility', 'visible');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -2360,7 +2362,7 @@ MUI.Window = new Class({
|
|||||||
'class': 'mochaContent'
|
'class': 'mochaContent'
|
||||||
}).inject(cache.contentWrapperEl);
|
}).inject(cache.contentWrapperEl);
|
||||||
|
|
||||||
if (this.options.useCanvas == true && Browser.Engine.trident != true) {
|
if (this.options.useCanvas == true && !MUI.ieLegacySupport) {
|
||||||
cache.canvasEl = new Element('canvas', {
|
cache.canvasEl = new Element('canvas', {
|
||||||
'id': id + '_canvas',
|
'id': id + '_canvas',
|
||||||
'class': 'mochaCanvas',
|
'class': 'mochaCanvas',
|
||||||
@ -2369,7 +2371,7 @@ MUI.Window = new Class({
|
|||||||
}).inject(this.windowEl);
|
}).inject(this.windowEl);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.options.useCanvas == true && Browser.Engine.trident) {
|
if (this.options.useCanvas == true && MUI.ieLegacySupport) {
|
||||||
cache.canvasEl = new Element('canvas', {
|
cache.canvasEl = new Element('canvas', {
|
||||||
'id': id + '_canvas',
|
'id': id + '_canvas',
|
||||||
'class': 'mochaCanvas',
|
'class': 'mochaCanvas',
|
||||||
@ -2382,7 +2384,7 @@ MUI.Window = new Class({
|
|||||||
}
|
}
|
||||||
}).inject(this.windowEl);
|
}).inject(this.windowEl);
|
||||||
|
|
||||||
if (MUI.ieSupport == 'excanvas'){
|
if (MUI.ieLegacySupport && MUI.ieSupport == 'excanvas'){
|
||||||
G_vmlCanvasManager.initElement(cache.canvasEl);
|
G_vmlCanvasManager.initElement(cache.canvasEl);
|
||||||
cache.canvasEl = this.windowEl.getElement('.mochaCanvas');
|
cache.canvasEl = this.windowEl.getElement('.mochaCanvas');
|
||||||
}
|
}
|
||||||
@ -2401,7 +2403,7 @@ MUI.Window = new Class({
|
|||||||
'height': 14
|
'height': 14
|
||||||
}).inject(this.windowEl);
|
}).inject(this.windowEl);
|
||||||
|
|
||||||
if (Browser.Engine.trident && MUI.ieSupport == 'excanvas'){
|
if (MUI.ieLegacySupport && MUI.ieSupport == 'excanvas'){
|
||||||
G_vmlCanvasManager.initElement(cache.canvasControlsEl);
|
G_vmlCanvasManager.initElement(cache.canvasControlsEl);
|
||||||
cache.canvasControlsEl = this.windowEl.getElement('.mochaCanvasControls');
|
cache.canvasControlsEl = this.windowEl.getElement('.mochaCanvasControls');
|
||||||
}
|
}
|
||||||
@ -2448,13 +2450,13 @@ MUI.Window = new Class({
|
|||||||
'height': 26
|
'height': 26
|
||||||
}).inject(this.windowEl, 'bottom');
|
}).inject(this.windowEl, 'bottom');
|
||||||
|
|
||||||
if (Browser.Engine.trident && MUI.ieSupport == 'excanvas'){
|
if (MUI.ieLegacySupport && MUI.ieSupport == 'excanvas'){
|
||||||
G_vmlCanvasManager.initElement(cache.canvasHeaderEl);
|
G_vmlCanvasManager.initElement(cache.canvasHeaderEl);
|
||||||
cache.canvasHeaderEl = this.windowEl.getElement('.mochaCanvasHeader');
|
cache.canvasHeaderEl = this.windowEl.getElement('.mochaCanvasHeader');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( Browser.Engine.trident ){
|
if ( MUI.ieLegacySupport ){
|
||||||
cache.overlayEl.setStyle('zIndex', 2);
|
cache.overlayEl.setStyle('zIndex', 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2697,7 +2699,7 @@ MUI.Window = new Class({
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (this.options.useCanvas == true) {
|
if (this.options.useCanvas == true) {
|
||||||
if (Browser.Engine.trident) {
|
if (MUI.ieLegacySupport) {
|
||||||
this.canvasEl.height = 20000;
|
this.canvasEl.height = 20000;
|
||||||
this.canvasEl.width = 50000;
|
this.canvasEl.width = 50000;
|
||||||
}
|
}
|
||||||
@ -2754,7 +2756,7 @@ MUI.Window = new Class({
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Invisible dummy object. The last element drawn is not rendered consistently while resizing in IE6 and IE7
|
// Invisible dummy object. The last element drawn is not rendered consistently while resizing in IE6 and IE7
|
||||||
if (Browser.Engine.trident){
|
if (MUI.ieLegacySupport){
|
||||||
MUI.triangle(ctx, 0, 0, 10, 10, options.resizableColor, 0);
|
MUI.triangle(ctx, 0, 0, 10, 10, options.resizableColor, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2825,7 +2827,7 @@ MUI.Window = new Class({
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Invisible dummy object. The last element drawn is not rendered consistently while resizing in IE6 and IE7
|
// Invisible dummy object. The last element drawn is not rendered consistently while resizing in IE6 and IE7
|
||||||
if (Browser.Engine.trident){
|
if (MUI.ieLegacySupport){
|
||||||
MUI.triangle(ctx, 0, 0, 10, 10, options.resizableColor, 0);
|
MUI.triangle(ctx, 0, 0, 10, 10, options.resizableColor, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2894,7 +2896,7 @@ MUI.Window = new Class({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
// Invisible dummy object. The last element drawn is not rendered consistently while resizing in IE6 and IE7
|
// Invisible dummy object. The last element drawn is not rendered consistently while resizing in IE6 and IE7
|
||||||
if (Browser.Engine.trident){
|
if (MUI.ieLegacySupport){
|
||||||
MUI.circle(ctx2, 0, 0, 3, this.options.resizableColor, 0);
|
MUI.circle(ctx2, 0, 0, 3, this.options.resizableColor, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3326,7 +3328,7 @@ MUI.extend({
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Redraws IE windows without shadows since IE messes up canvas alpha when you change element opacity
|
// Redraws IE windows without shadows since IE messes up canvas alpha when you change element opacity
|
||||||
if (Browser.Engine.trident) instance.drawWindow(false);
|
if (MUI.ieLegacySupport) instance.drawWindow(false);
|
||||||
if (instance.options.type == 'modal' || instance.options.type == 'modal2'){
|
if (instance.options.type == 'modal' || instance.options.type == 'modal2'){
|
||||||
MUI.Modal.modalOverlayCloseMorph.start({
|
MUI.Modal.modalOverlayCloseMorph.start({
|
||||||
'opacity': 0
|
'opacity': 0
|
||||||
@ -3351,7 +3353,7 @@ MUI.extend({
|
|||||||
var instance = instances.get(windowEl.id);
|
var instance = instances.get(windowEl.id);
|
||||||
windowEl.setStyle('visibility', 'hidden');
|
windowEl.setStyle('visibility', 'hidden');
|
||||||
// Destroy throws an error in IE8
|
// Destroy throws an error in IE8
|
||||||
if (Browser.Engine.trident) {
|
if (MUI.ieLegacySupport) {
|
||||||
windowEl.dispose();
|
windowEl.dispose();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -3650,7 +3652,7 @@ MUI.extend({
|
|||||||
instance.drawWindow();
|
instance.drawWindow();
|
||||||
// Show iframe
|
// Show iframe
|
||||||
if (instance.iframeEl){
|
if (instance.iframeEl){
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
instance.iframeEl.setStyle('visibility', 'visible');
|
instance.iframeEl.setStyle('visibility', 'visible');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -4377,7 +4379,7 @@ MUI.Desktop = {
|
|||||||
// Hide iframe
|
// Hide iframe
|
||||||
// Iframe should be hidden when minimizing, maximizing, and moving for performance and Flash issues
|
// Iframe should be hidden when minimizing, maximizing, and moving for performance and Flash issues
|
||||||
if ( instance.iframeEl ) {
|
if ( instance.iframeEl ) {
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
instance.iframeEl.setStyle('visibility', 'hidden');
|
instance.iframeEl.setStyle('visibility', 'hidden');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -4440,7 +4442,7 @@ MUI.Desktop = {
|
|||||||
// Hide iframe
|
// Hide iframe
|
||||||
// Iframe should be hidden when minimizing, maximizing, and moving for performance and Flash issues
|
// Iframe should be hidden when minimizing, maximizing, and moving for performance and Flash issues
|
||||||
if ( instance.iframeEl ) {
|
if ( instance.iframeEl ) {
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
instance.iframeEl.setStyle('visibility', 'hidden');
|
instance.iframeEl.setStyle('visibility', 'hidden');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -5307,7 +5309,7 @@ MUI.extend({
|
|||||||
var contentWrapperEl = instance.contentWrapperEl;
|
var contentWrapperEl = instance.contentWrapperEl;
|
||||||
|
|
||||||
if (instance.iframeEl) {
|
if (instance.iframeEl) {
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
instance.iframeEl.setStyles({
|
instance.iframeEl.setStyles({
|
||||||
'height': contentWrapperEl.getStyle('height'),
|
'height': contentWrapperEl.getStyle('height'),
|
||||||
'width': contentWrapperEl.offsetWidth - contentWrapperEl.getStyle('border-left').toInt() - contentWrapperEl.getStyle('border-right').toInt()
|
'width': contentWrapperEl.offsetWidth - contentWrapperEl.getStyle('border-left').toInt() - contentWrapperEl.getStyle('border-right').toInt()
|
||||||
@ -5373,7 +5375,7 @@ function addResizeRight(element, min, max){
|
|||||||
handle.setStyle('cursor', Browser.Engine.webkit ? 'col-resize' : 'e-resize');
|
handle.setStyle('cursor', Browser.Engine.webkit ? 'col-resize' : 'e-resize');
|
||||||
if (!min) min = 50;
|
if (!min) min = 50;
|
||||||
if (!max) max = 250;
|
if (!max) max = 250;
|
||||||
if (Browser.Engine.trident) {
|
if (MUI.ieLegacySupport) {
|
||||||
handle.addEvents({
|
handle.addEvents({
|
||||||
'mousedown': function(){
|
'mousedown': function(){
|
||||||
handle.setCapture();
|
handle.setCapture();
|
||||||
@ -5440,7 +5442,7 @@ function addResizeLeft(element, min, max){
|
|||||||
var partner = element.getPrevious('.column');
|
var partner = element.getPrevious('.column');
|
||||||
if (!min) min = 50;
|
if (!min) min = 50;
|
||||||
if (!max) max = 250;
|
if (!max) max = 250;
|
||||||
if (Browser.Engine.trident){
|
if (MUI.ieLegacySupport){
|
||||||
handle.addEvents({
|
handle.addEvents({
|
||||||
'mousedown': function(){
|
'mousedown': function(){
|
||||||
handle.setCapture();
|
handle.setCapture();
|
||||||
@ -5485,7 +5487,7 @@ function addResizeBottom(element){
|
|||||||
return element.getStyle('height').toInt() + partner.getStyle('height').toInt();
|
return element.getStyle('height').toInt() + partner.getStyle('height').toInt();
|
||||||
}.bind(this);
|
}.bind(this);
|
||||||
|
|
||||||
if (Browser.Engine.trident) {
|
if (MUI.ieLegacySupport) {
|
||||||
handle.addEvents({
|
handle.addEvents({
|
||||||
'mousedown': function(){
|
'mousedown': function(){
|
||||||
handle.setCapture();
|
handle.setCapture();
|
||||||
@ -5507,7 +5509,7 @@ function addResizeBottom(element){
|
|||||||
}.bind(this),
|
}.bind(this),
|
||||||
onStart: function(){
|
onStart: function(){
|
||||||
if (instance.iframeEl) {
|
if (instance.iframeEl) {
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
instance.iframeEl.setStyle('visibility', 'hidden');
|
instance.iframeEl.setStyle('visibility', 'hidden');
|
||||||
partner.getElements('iframe').setStyle('visibility','hidden');
|
partner.getElements('iframe').setStyle('visibility','hidden');
|
||||||
}
|
}
|
||||||
@ -5544,7 +5546,7 @@ function addResizeBottom(element){
|
|||||||
MUI.panelHeight(column);
|
MUI.panelHeight(column);
|
||||||
});
|
});
|
||||||
if (instance.iframeEl) {
|
if (instance.iframeEl) {
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
instance.iframeEl.setStyle('visibility', 'visible');
|
instance.iframeEl.setStyle('visibility', 'visible');
|
||||||
partner.getElements('iframe').setStyle('visibility','visible');
|
partner.getElements('iframe').setStyle('visibility','visible');
|
||||||
}
|
}
|
||||||
@ -5600,7 +5602,7 @@ MUI.extend({
|
|||||||
MUI.closePanel($(panel.id));
|
MUI.closePanel($(panel.id));
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
|
|
||||||
if (Browser.Engine.trident) {
|
if (MUI.ieLegacySupport) {
|
||||||
columnEl.dispose();
|
columnEl.dispose();
|
||||||
if (instance.handleEl != null) {
|
if (instance.handleEl != null) {
|
||||||
instance.handleEl.dispose();
|
instance.handleEl.dispose();
|
||||||
@ -5795,7 +5797,7 @@ MUI.Dock = {
|
|||||||
}).inject(this.dock);
|
}).inject(this.dock);
|
||||||
|
|
||||||
// Dynamically initialize canvas using excanvas. This is only required by IE
|
// Dynamically initialize canvas using excanvas. This is only required by IE
|
||||||
if (Browser.Engine.trident && MUI.ieSupport == 'excanvas'){
|
if (MUI.ieLegacySupport && MUI.ieSupport == 'excanvas'){
|
||||||
G_vmlCanvasManager.initElement(canvas);
|
G_vmlCanvasManager.initElement(canvas);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -6053,7 +6055,7 @@ MUI.Dock = {
|
|||||||
// Iframe should be hidden when minimizing, maximizing, and moving for performance and Flash issues
|
// Iframe should be hidden when minimizing, maximizing, and moving for performance and Flash issues
|
||||||
if ( instance.iframeEl ) {
|
if ( instance.iframeEl ) {
|
||||||
// Some elements are still visible in IE8 in the iframe when the iframe's visibility is set to hidden.
|
// Some elements are still visible in IE8 in the iframe when the iframe's visibility is set to hidden.
|
||||||
if (!Browser.Engine.trident) {
|
if (!MUI.ieLegacySupport) {
|
||||||
instance.iframeEl.setStyle('visibility', 'hidden');
|
instance.iframeEl.setStyle('visibility', 'hidden');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -6119,7 +6121,7 @@ MUI.Dock = {
|
|||||||
|
|
||||||
// Show iframe
|
// Show iframe
|
||||||
if (instance.iframeEl){
|
if (instance.iframeEl){
|
||||||
if (!Browser.Engine.trident){
|
if (!MUI.ieLegacySupport){
|
||||||
instance.iframeEl.setStyle('visibility', 'visible');
|
instance.iframeEl.setStyle('visibility', 'visible');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user