Updates and fixes, remove .htaccess
Remove .htaccess file with php variable settings as this will not work on FPM calls. Various minor fixes in core libs Basic lib debug output check is now a sub class so we can use this everywhere without writing the whole if statement again Basic lib has a dummy uniq id method added. Not yet finished
This commit is contained in:
@@ -86,9 +86,10 @@ function getScrollOffset()
|
||||
function setCenter(id, left, top)
|
||||
{
|
||||
// get size of id
|
||||
var dimensions = {};
|
||||
dimensions.height = $('#' + id).height();
|
||||
dimensions.width = $('#' + id).width();
|
||||
var dimensions = {
|
||||
height: $('#' + id).height(),
|
||||
width: $('#' + id).width()
|
||||
};
|
||||
var type = $('#' + id).css('position');
|
||||
var viewport = getWindowSize();
|
||||
var offset = getScrollOffset();
|
||||
@@ -474,11 +475,11 @@ function overlayBoxHide()
|
||||
*/
|
||||
function setOverlayBox()
|
||||
{
|
||||
var viewport = document.viewport.getDimensions();
|
||||
$('#overlayBox').setStyle ({
|
||||
/* var viewport = document.viewport.getDimensions();
|
||||
$('#overlayBox').css ({
|
||||
width: '100%',
|
||||
height: '100%'
|
||||
});
|
||||
});*/
|
||||
$('#overlayBox').show();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user