Si se puede hacer, y no es tan dificil, solo busca dentro de
this.create = function() { ... } el siguiente bloque:
Código:
for(i = wdays = 0; i <= 6; i++) {
ind = (i + this.offset) % 7;
if(ind == 0) cls = 'cssSaturdays';
else if(ind == 1) cls = 'cssSundays';
else cls = 'cssDays';
style = '';
date = this.year + '-' + this.month + '-' + daycount;
if((daycount == 1 && i < start) || daycount > stop) content = ' ';
else {
content = daycount;
if(inThisMonth && daycount == curDay) {
style = 'padding:0px;border:3px solid ' + this.tdBorderColor + ';';
}
else if(this.year == 1582 && this.month == 10 && daycount == 4) daycount = 14;
daycount++;
wdays++;
}
// ********** Agrega aqui lo siguiente:
tmplink = this.link; // Conservamos el link actual
if(ind == 0 || ind == 1) // Sabado = 0, Domingo = 1
this.link = false; // Eliminamos link
html += this.table_cell(content, cls + cal_ID, date, style);
}
// Agrega esta linea tambien
this.link = tmplink; // Recuperamos el link