Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
IPdotSetAF committed May 16, 2024
1 parent 4fc1521 commit 133bc67
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,7 @@ window.onload = function () {
["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
["Farvardin", "Ordibehesht", "Khordad", "Tir", "Mordad", "Shahrivar", "Mehr", "Aban", "Azar", "Dey", "Bahman", "Esfand"],
["Muharram", "Safar", "Rabi' al-Awwal", "Rabi' al-Thani", "Jumada al-Awwal", "Jumada al-Thani", "Rajab", "Sha'ban", "Ramadan", "Shawwal", "Dhu al-Qadah", "Dhu al-Hijjah"]
];
dateDelimiters = ["", " ", "-", ".", "/"];
], dateDelimiters = ["", " ", "-", ".", "/"];
let days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
let fonts = ["monospace", "consolas", "courier-bold", "neo-matrix"];
let charsets = [
Expand Down Expand Up @@ -477,7 +476,7 @@ window.onload = function () {
switch (options.ui_date_date) {
case "1":
year = today.getFullYear();
month = today.getMonth() +1;
month = today.getMonth() + 1;
date = today.getDate();
break;
case "2":
Expand Down

0 comments on commit 133bc67

Please sign in to comment.