tickbut: add classes
[brisk.git] / web / ticker.js
index e4362ff..c2c8808 100644 (file)
@@ -49,20 +49,26 @@ train.prototype = {
     box: null,
     notebox: null,
     width: 0,
-    deltat: 100,
-    deltas: 5,
+    deltat: 250,
+    deltas: 12,
     xend: 0,
     timout: null,
     clickable: true,
 
     show: function()
     {
+       $('tickbut').style.visibility = "hidden";
+       $('tickbut').style.width = "0px";
+
         this.clickable = true;
         this.box.style.visibility = "visible";
     },
 
     hide: function()
     {
+       $('tickbut').style.visibility = "visible";
+       $('tickbut').style.width = "20px";
+
         this.clickable = false;
         for (cur = this.first ; cur != null ; cur = cur.next) {
             if (cur.notebox != null) {
@@ -197,7 +203,7 @@ train.prototype = {
                 wag.box.innerHTML = "";
                 wag.shut_step = 2;
             }
-           curw = wag.widthbox_get() - 4;
+           curw = wag.widthbox_get() - 10;
             wag.w = curw + 2; // 2 for border pixels
             if (curw <= 0) {
                 obj.box.removeChild(wag.box);
@@ -211,7 +217,7 @@ train.prototype = {
             }
         }
         this.redraw();
-        setTimeout(function(){ arguments[0][0].shut_wagon(arguments[0]);  }, 100, [ obj, wag ]);
+        setTimeout(function(){ arguments[0][0].shut_wagon(arguments[0]);  }, 250, [ obj, wag ]);
     },
 
     redraw: function()