Solucionado error al posicionar imagenes full
This commit is contained in:
parent
d5cd84d22b
commit
a43176563e
|
@ -1,4 +1,4 @@
|
||||||
hedera-web (1.312-deb8) stable; urgency=low
|
hedera-web (1.314-deb8) stable; urgency=low
|
||||||
|
|
||||||
* Initial Release.
|
* Initial Release.
|
||||||
|
|
||||||
|
|
|
@ -31,12 +31,12 @@ Htk.FullImage = new Class
|
||||||
|
|
||||||
,getLeft: function (width)
|
,getLeft: function (width)
|
||||||
{
|
{
|
||||||
return parseInt (Vn.Browser.getPageXOffset () + (Vn.Browser.getInnerWidth () - width) / 2) +'px';
|
return parseInt ((Vn.Browser.getInnerWidth () - width) / 2) +'px';
|
||||||
}
|
}
|
||||||
|
|
||||||
,getTop: function (height)
|
,getTop: function (height)
|
||||||
{
|
{
|
||||||
return parseInt (Vn.Browser.getPageYOffset () + (Vn.Browser.getInnerHeight () - height) / 2) +'px';
|
return parseInt ((Vn.Browser.getInnerHeight () - height) / 2) +'px';
|
||||||
}
|
}
|
||||||
|
|
||||||
,show: function (src)
|
,show: function (src)
|
||||||
|
|
Loading…
Reference in New Issue