From b74a4fc19f72c179c30f6b3420e431eaad562bbc Mon Sep 17 00:00:00 2001 From: Erik Amaru Ortiz Date: Tue, 8 Feb 2011 17:01:00 +0000 Subject: [PATCH] PMExt.Notify() function was fixed to show without alter the current view --- gulliver/js/ext/pmos-common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/js/ext/pmos-common.js b/gulliver/js/ext/pmos-common.js index 9fd3b4700..6c4e2a342 100755 --- a/gulliver/js/ext/pmos-common.js +++ b/gulliver/js/ext/pmos-common.js @@ -82,7 +82,7 @@ Ext.msgBoxSlider = function(){ return { msg : function(title, format) { if( ! msgCt ) { - msgCt = Ext.DomHelper.insertFirst(document.body, {id:'msg-div'}, true); + msgCt = Ext.DomHelper.insertFirst(document.body, {id:'msg-div', style:'position:absolute'}, true); } msgCt.alignTo(document, 't-t'); var s = String.format.apply(String, Array.prototype.slice.call(arguments, 1));