deltas: 10,
xend: 0,
timout: null,
- clickable: true,
+ clickable: false,
show: function()
{
this.clickable = true;
this.box.style.visibility = "visible";
+ for (cur = this.first ; cur != null ; cur = cur.next) {
+ cur.box.style.borderColor = "green green green green";
+ }
},
hide: function()
$('tickbut').style.width = "20px";
this.clickable = false;
+ this.box.style.visibility = "visible";
+
for (cur = this.first ; cur != null ; cur = cur.next) {
if (cur.notebox != null) {
cur.cb_mouseout();
}
+ cur.box.style.borderColor = "gray gray gray gray";
}
},
resetx: function()
{
this.deltas = 10;
- this.clickable = true;
this.box.style.left = this.anc.offsetWidth+"px";
},
box = document.createElement("div");
box.className = "wagon";
box.anc = this;
+ if (anc.clickable == false)
+ box.style.borderColor = "gray gray gray gray";
this.table = table;
this.title = title;
box.innerHTML = "Tavolo "+table;