Add installation instruction file;
Order directories.
This commit is contained in:
parent
766e51af4c
commit
3ac005708d
49 changed files with 61 additions and 0 deletions
8
rivista/assets/script/iso8601_to_utc.js
Normal file
8
rivista/assets/script/iso8601_to_utc.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
// Convert ISO8601 To UTC
|
||||
|
||||
window.onload = function(){
|
||||
for (element of document.querySelectorAll('#articles > ul > li > div > h4')) {
|
||||
timestamp = new Date(element.textContent);
|
||||
element.textContent = timestamp.toUTCString();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue