Commented out a residual “console.log()”; bumped version to 0.3.2
This commit is contained in:
parent
1e4653cd6e
commit
123a7402a4
1 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@
|
|||
// todo: add a "last updated on" header
|
||||
|
||||
$SCRIPTNAME='pfaltgall';
|
||||
$SCRIPTVERSION='0.3.1';
|
||||
$SCRIPTVERSION='0.3.2';
|
||||
$SCRIPTURL='https://git.lattuga.net/Jones/pfaltgall';
|
||||
|
||||
require 'lib/ckratelimit.php';
|
||||
|
@ -544,7 +544,7 @@ function prelb() {
|
|||
for (i=0; i<totimgs; i++) {
|
||||
timg=document.getElementById("thumb"+i);
|
||||
if (timg.getAttribute("isset")=="0" && isInViewport(timg)) {
|
||||
console.log(i);
|
||||
// console.log(i);
|
||||
timg.src=thumbsurls[i];
|
||||
timg.setAttribute("isset","1");
|
||||
}
|
||||
|
@ -557,7 +557,7 @@ function setToolBar() {
|
|||
bd=document.getElementById("browser"),
|
||||
dw=window.innerWidth,
|
||||
dh=window.innerHeight;
|
||||
//console.log("dw: "+dw+"; dh: "+dh);
|
||||
// console.log("dw: "+dw+"; dh: "+dh);
|
||||
if (dw >= dh) {
|
||||
dw-=48;
|
||||
md.style.width=dw+"px";
|
||||
|
|
Loading…
Reference in a new issue