13 lines
560 B
JavaScript
Executable File
13 lines
560 B
JavaScript
Executable File
/* http://keith-wood.name/countdown.html
|
|
Traditional Chinese initialisation for the jQuery countdown extension
|
|
Written by Cloudream (cloudream@gmail.com). */
|
|
(function($) {
|
|
$.countdown.regional['zh-TW'] = {
|
|
labels: ['年', '月', '周', '天', '時', '分', '秒'],
|
|
labels1: ['年', '月', '周', '天', '時', '分', '秒'],
|
|
compactLabels: ['年', '月', '周', '天'], compactLabels1: ['年', '月', '周', '天'],
|
|
whichLabels: null,
|
|
timeSeparator: ':', isRTL: false};
|
|
$.countdown.setDefaults($.countdown.regional['zh-TW']);
|
|
})(jQuery);
|