Re: Coming 2.8.8 logs
Posted: Thu Jul 04, 2024 8:29 pm
What it is about? For what you use this extension?
It throw an error that should be really easy to fix.
It throw an error that should be really easy to fix.
integration and scripts forums
https://www.axew3.com/w3/forums/
Code: Select all
<script type="text/javascript">
$(document).ready(function() {
/* Add resize attach in phpBB3.1 && Anvar bb3.mobi */
$('dl.thumbnail img, dt.attach-image img').load(function() {
var w = $(this).width();
var h = $(this).height();
var rh = $(this).height();
if (w > h) {
h = w;
w = w*(h/rh);
}
$(this).width(w*(2/3));
$(this).height(h*(2/3));
});
$('dl.thumbnail img, dt.attach-image img').each(function() {
var src = $(this).attr('src');
$(this).attr('src', '');
$(this).attr('src', src);
});
});
</script>
Code: Select all
if( typeof t != 'undefined' || t != false )
{
t.setAttribute("style", "position:fixed;top:0;left:0;width:100%;padding:0");
}
Code: Select all
t.setAttribute("style", "position:fixed;top:0;left:0;width:100%;padding:0");
Code: Select all
t.setAttribute("style", "position:fixed;top:0;left:0;width:100%;");