Allow MessageBox to be updated via show
This commit is contained in:
parent
8dc79c0fa7
commit
aa38487f9f
@ -88,13 +88,21 @@
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
this.showned = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
MessageBox.prototype.setHandler = function( handler ) { this.clickHandler = handler };
|
MessageBox.prototype.setHandler = function( handler ) { this.clickHandler = handler };
|
||||||
|
|
||||||
MessageBox.prototype.show = function ()
|
MessageBox.prototype.show = function ()
|
||||||
{
|
{
|
||||||
|
var update = this.showned;
|
||||||
|
if( !update )
|
||||||
|
{
|
||||||
|
this.showned = true;
|
||||||
document.body.appendChild( this.stage );
|
document.body.appendChild( this.stage );
|
||||||
|
}
|
||||||
|
|
||||||
// Center the box
|
// Center the box
|
||||||
var m_style = this.mbox.style;
|
var m_style = this.mbox.style;
|
||||||
|
|
||||||
@ -103,6 +111,7 @@
|
|||||||
m_style.marginLeft = String( -0.5 * this.mbox.clientWidth ) + "px";
|
m_style.marginLeft = String( -0.5 * this.mbox.clientWidth ) + "px";
|
||||||
m_style.overflow = "hidden";
|
m_style.overflow = "hidden";
|
||||||
m_style.minHeight = m_style.opacity = m_style.height = 0;
|
m_style.minHeight = m_style.opacity = m_style.height = 0;
|
||||||
|
|
||||||
// The interval in firefox seems independent to etablishing element style
|
// The interval in firefox seems independent to etablishing element style
|
||||||
// using heightTriggers-hack instead
|
// using heightTriggers-hack instead
|
||||||
var by = function( el )
|
var by = function( el )
|
||||||
@ -110,11 +119,13 @@
|
|||||||
var tRect = el.getBoundingClientRect();
|
var tRect = el.getBoundingClientRect();
|
||||||
return tRect.y || tRect.top;
|
return tRect.y || tRect.top;
|
||||||
};
|
};
|
||||||
|
|
||||||
var bh = function( el )
|
var bh = function( el )
|
||||||
{
|
{
|
||||||
var tRect = el.getBoundingClientRect();
|
var tRect = el.getBoundingClientRect();
|
||||||
return tRect.height;
|
return tRect.height;
|
||||||
};
|
};
|
||||||
|
|
||||||
Trigger.height(
|
Trigger.height(
|
||||||
this.mbox, 0
|
this.mbox, 0
|
||||||
, function()
|
, function()
|
||||||
|
Loading…
Reference in New Issue
Block a user