forked from leftypol/leftypol
Moved $config['local_time'] to Tinyboard-Tools (local-time.js)
This commit is contained in:
parent
1769de4cdc
commit
14a2f97323
4 changed files with 0 additions and 45 deletions
|
@ -168,41 +168,6 @@ function init_expanding() {
|
|||
}
|
||||
}
|
||||
|
||||
{% endraw %}
|
||||
{% if config.javascript_local_time %}
|
||||
{% raw %}
|
||||
function init_localtime(){
|
||||
var iso8601 = function iso8601(s) {
|
||||
s = s.replace(/\.\d\d\d+/,""); // remove milliseconds
|
||||
s = s.replace(/-/,"/").replace(/-/,"/");
|
||||
s = s.replace(/T/," ").replace(/Z/," UTC");
|
||||
s = s.replace(/([\+\-]\d\d)\:?(\d\d)/," $1$2"); // -04:00 -> -0400
|
||||
return new Date(s);
|
||||
};
|
||||
var zeropad = function(num, count) {
|
||||
return [Math.pow(10, count - num.toString().length), num].join('').substr(1);
|
||||
};
|
||||
|
||||
var times = document.getElementsByTagName('time');
|
||||
for (var i = 0; i < times.length ; i++) {
|
||||
if(!times[i].textContent.match(/^\d+\/\d+\/\d+ \(\w+\) \d+:\d+:\d+$/)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
var t = iso8601(times[i].getAttribute('datetime'));
|
||||
|
||||
times[i].textContent =
|
||||
// date
|
||||
zeropad(t.getMonth() + 1, 2) + "/" + zeropad(t.getDate(), 2) + "/" + t.getFullYear().toString().substring(2) +
|
||||
" (" + ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][t.getDay()] + ") " +
|
||||
// time
|
||||
zeropad(t.getHours(), 2) + ":" + zeropad(t.getMinutes(), 2) + ":" + zeropad(t.getSeconds(), 2);
|
||||
}
|
||||
};
|
||||
{% endraw %}
|
||||
{% endif %}
|
||||
{% raw %}
|
||||
|
||||
function init() {
|
||||
newElement = document.createElement('div');
|
||||
newElement.className = 'styles';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue