renderCoins: function() {
$$("#coin-tab th.coin abbr, #coin-tab th.inhibit abbr").each(function(e){
e.set("text", e.get('text').match(/^(.*)(\(.*\))?/)[1]
- + " (" + (this.defs.properties.trg_input_count-1) + ":0)");
+ + " (" + (Math.min(this.defs.properties.trg_input_count-1,7)) + ":0)");
}.bind(this));
for(var i=0; i<this.defs.properties.trg_coin_count; i++) {
])
);
- for(var j=this.defs.properties.trg_input_count-1; j >= 0; j--) {
- coin.adopt( new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.coin_mask['+j+']'}));
- inhibit.adopt(new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.inhibit_mask['+j+']'}));
+ for(var j=Math.min(this.defs.properties.trg_input_count-1,7); j >= 0; j--) {
+ coin.adopt( new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.coin_mask['+j+']', 'flashgroup': 'itc-' + (j + parseInt(this.defs.properties.trg_input_itc_base))}));
+ inhibit.adopt(new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.inhibit_mask['+j+']', 'flashgroup': 'itc-' + (j + parseInt(this.defs.properties.trg_input_itc_base))}));
}
}
},