X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fticker.js;h=f43ae90aa3dfb0690fb2db5ba6b872eaab83e785;hb=db5d6355c39327ba7f8052f360f1e846ba4ad01c;hp=8c057bbdd92b8351edea6baa7db5901c5bdea905;hpb=e64958a99f3de9eb6f3657e70830c9001042a0b5;p=brisk.git diff --git a/web/ticker.js b/web/ticker.js index 8c057bb..f43ae90 100644 --- a/web/ticker.js +++ b/web/ticker.js @@ -1,7 +1,7 @@ /* * brisk - ticker.js * - * Copyright (C) 2006-2008 Matteo Nastasi + * Copyright (C) 2006-2012 Matteo Nastasi * mailto: nastasi@alternativeoutput.it * matteo.nastasi@milug.org * web: http://www.alternativeoutput.it @@ -19,8 +19,6 @@ * not, write to the Free Software Foundation, Inc, 59 Temple Place - * Suite 330, Boston, MA 02111-1307, USA. * - * $Id$ - * */ function train(anc) { @@ -53,7 +51,7 @@ train.prototype = { deltas: 10, xend: 0, timout: null, - clickable: true, + clickable: false, show: function() { @@ -62,6 +60,9 @@ train.prototype = { 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() @@ -70,10 +71,13 @@ train.prototype = { $('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"; } }, @@ -267,7 +271,6 @@ train.prototype = { resetx: function() { this.deltas = 10; - this.clickable = true; this.box.style.left = this.anc.offsetWidth+"px"; }, @@ -329,6 +332,8 @@ function wagon(anc, table, title) { 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;