Solucionado error al posicionar imagenes full

This commit is contained in:
Juan Ferrer Toribio 2015-12-15 16:37:10 +01:00
parent d5cd84d22b
commit a43176563e
2 changed files with 3 additions and 3 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.312-deb8) stable; urgency=low hedera-web (1.314-deb8) stable; urgency=low
* Initial Release. * Initial Release.

View File

@ -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)