From 631fffee8a28b1bec5ed1f1d26a20e0135967f99 Mon Sep 17 00:00:00 2001 From: Mamadou DIOP Date: Mon, 17 Aug 2015 01:56:35 +0200 Subject: - --- .../Overlay.js | 91 ---------------------- 1 file changed, 91 deletions(-) delete mode 100644 branches/1.0/schemas/OMNA Schema-based Namespace Registry_fichiers/Overlay.js (limited to 'branches/1.0/schemas/OMNA Schema-based Namespace Registry_fichiers/Overlay.js') diff --git a/branches/1.0/schemas/OMNA Schema-based Namespace Registry_fichiers/Overlay.js b/branches/1.0/schemas/OMNA Schema-based Namespace Registry_fichiers/Overlay.js deleted file mode 100644 index 4b16dba..0000000 --- a/branches/1.0/schemas/OMNA Schema-based Namespace Registry_fichiers/Overlay.js +++ /dev/null @@ -1,91 +0,0 @@ -if (typeof window.RadControlsNamespace == "undefined") -{ - window.RadControlsNamespace = {}; -} - -if ( - typeof(window.RadControlsNamespace.Overlay) == "undefined" || - typeof(window.RadControlsNamespace.Overlay.Version) == null || - window.RadControlsNamespace.Overlay.Version < 1.1 - ) -{ - window.RadControlsNamespace.Overlay = function (element) - { - - if (!this.SupportsOverlay()) - { - return; - } - - this.Element = element; - - this.Shim = document.createElement("IFRAME"); - this.Shim.src="javascript:'';"; - this.Element.parentNode.insertBefore(this.Shim, this.Element); - - if (element.style.zIndex > 0) - { - this.Shim.style.zIndex = element.style.zIndex - 1; - } - this.Shim.style.position = "absolute"; - this.Shim.style.border = "0px"; - this.Shim.frameBorder = 0; - this.Shim.style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)"; - this.Shim.disabled = "disabled"; - } - - window.RadControlsNamespace.Overlay.Version = 1.1;// update in the header IF also - - RadControlsNamespace.Overlay.prototype.SupportsOverlay = function() - { - return (RadControlsNamespace.Browser.IsIE); - } - - RadControlsNamespace.Overlay.prototype.Update = function () - { - if (!this.SupportsOverlay()) - { - return; - } - - this.Shim.style.top = this.ToUnit(this.Element.style.top); - this.Shim.style.left = this.ToUnit(this.Element.style.left); - this.Shim.style.width = this.Element.offsetWidth + "px"; - this.Shim.style.height = this.Element.offsetHeight + "px"; - - // this.Shim.style.border = "0px solid red"; - } - - RadControlsNamespace.Overlay.prototype.ToUnit = function (value) - { - if (!value) return "0px"; - return parseInt(value) + "px"; - } - - RadControlsNamespace.Overlay.prototype.Dispose = function () - { - if (!this.SupportsOverlay()) - { - return; - } - - if (this.Shim.parentNode) - { - this.Shim.parentNode.removeChild(this.Shim); - } - - this.Element = null; - this.Shim = null; - - } -} - -//BEGIN_ATLAS_NOTIFY -if (typeof(Sys) != "undefined") -{ - if (Sys.Application != null && Sys.Application.notifyScriptLoaded != null) - { - Sys.Application.notifyScriptLoaded(); - } -} -//END_ATLAS_NOTIFY \ No newline at end of file -- cgit v1.1