Pd counter i18n fix.
[wolnelektury.git] / wolnelektury / static / js / jquery.countdown.js
index 5375ce8..d00dca0 100644 (file)
@@ -471,7 +471,10 @@ $.extend(Countdown.prototype, {
                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]) + ' ' : '');
                };
@@ -729,4 +732,4 @@ $.fn.countdown = function(options) {
 /* Initialise the countdown functionality. */
 $.countdown = new Countdown(); // singleton instance
 
-})(jQuery);
+})(jQuery);
\ No newline at end of file