From 4aed730e6cbd1423d6551e527da40e3d47d4a27c Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 17 May 2008 10:48:03 +0000 Subject: [PATCH] ticker bug fixed --- web/ticker.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/web/ticker.js b/web/ticker.js index c2c8808..fe8a096 100644 --- a/web/ticker.js +++ b/web/ticker.js @@ -50,7 +50,7 @@ train.prototype = { notebox: null, width: 0, deltat: 250, - deltas: 12, + deltas: 10, xend: 0, timout: null, clickable: true, @@ -104,6 +104,7 @@ train.prototype = { if (dostart) { this.start(); } + }, rem: function(table) @@ -178,7 +179,7 @@ train.prototype = { start_move: function() { - this.deltas = 5; + this.deltas = 10; }, shut_wagon: function(args) @@ -206,6 +207,8 @@ train.prototype = { curw = wag.widthbox_get() - 10; wag.w = curw + 2; // 2 for border pixels if (curw <= 0) { + wag.cb_mouseout(); + obj.box.removeChild(wag.box); obj.rem_obj(wag); @@ -245,6 +248,9 @@ train.prototype = { resetx: function() { + this.deltas = 10; + this.clickable = true; + this.box.style.left = this.anc.offsetWidth+"px"; }, -- 2.17.1