var timeSeparator = this._get(inst, 'timeSeparator');
var description = this._get(inst, 'description') || '';
var showCompact = function(period) {
- var labelsNum = $.countdown._get(inst, 'compactLabels' + periods[period]);
+ var which = $.countdown._get(inst, 'which');
+ if (which) {
+ var labelsNum = $.countdown._get(inst, 'compactLabels' + which(periods[period]));
+ }
return (show[period] ? periods[period] +
(labelsNum ? labelsNum[period] : labels[period]) + ' ' : '');
};