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
|
// todo: add a "last updated on" header
|
||||||
|
|
||||||
$SCRIPTNAME='pfaltgall';
|
$SCRIPTNAME='pfaltgall';
|
||||||
$SCRIPTVERSION='0.3.1';
|
$SCRIPTVERSION='0.3.2';
|
||||||
$SCRIPTURL='https://git.lattuga.net/Jones/pfaltgall';
|
$SCRIPTURL='https://git.lattuga.net/Jones/pfaltgall';
|
||||||
|
|
||||||
require 'lib/ckratelimit.php';
|
require 'lib/ckratelimit.php';
|
||||||
|
@ -544,7 +544,7 @@ function prelb() {
|
||||||
for (i=0; i<totimgs; i++) {
|
for (i=0; i<totimgs; i++) {
|
||||||
timg=document.getElementById("thumb"+i);
|
timg=document.getElementById("thumb"+i);
|
||||||
if (timg.getAttribute("isset")=="0" && isInViewport(timg)) {
|
if (timg.getAttribute("isset")=="0" && isInViewport(timg)) {
|
||||||
console.log(i);
|
// console.log(i);
|
||||||
timg.src=thumbsurls[i];
|
timg.src=thumbsurls[i];
|
||||||
timg.setAttribute("isset","1");
|
timg.setAttribute("isset","1");
|
||||||
}
|
}
|
||||||
|
@ -557,7 +557,7 @@ function setToolBar() {
|
||||||
bd=document.getElementById("browser"),
|
bd=document.getElementById("browser"),
|
||||||
dw=window.innerWidth,
|
dw=window.innerWidth,
|
||||||
dh=window.innerHeight;
|
dh=window.innerHeight;
|
||||||
//console.log("dw: "+dw+"; dh: "+dh);
|
// console.log("dw: "+dw+"; dh: "+dh);
|
||||||
if (dw >= dh) {
|
if (dw >= dh) {
|
||||||
dw-=48;
|
dw-=48;
|
||||||
md.style.width=dw+"px";
|
md.style.width=dw+"px";
|
||||||
|
|
Loading…
Reference in a new issue