Skip to content

Commit ce43741

Browse files
committed
Update
1 parent a6a8d21 commit ce43741

File tree

12 files changed

+13
-2552
lines changed

12 files changed

+13
-2552
lines changed
6 KB
Binary file not shown.

library/basic.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,16 @@ basic.start = function () {
130130
page.bodyElement.style.overflow = "hidden";
131131
page.box = createBox(0, 0, page.width, page.height);
132132
that.element.style.position = "fixed";
133+
//that.element.style.width = "100%";
134+
//that.element.style.height = "100%";
133135
that.color = "transparent";
134136

135137
page.onResize(function() {
136138
if (typeof page.refreshSize === "function") {
137139
page.refreshSize();
138140
}
139141
});
140-
142+
141143
if (typeof start === "function") {
142144
start();
143145
basic.afterStart();
@@ -280,17 +282,17 @@ basic.date = {
280282
let dt = new Date();
281283
return dt.getFullYear();
282284
},
283-
get mountNumber() {
285+
get monthNumber() {
284286
let dt = new Date();
285-
let mouth = dt.getMonth();
286-
mouth++;
287-
return mouth;
287+
let month = dt.getMonth();
288+
month++;
289+
return month;
288290
},
289291
get ayAdi() {
290-
return basic.aylar[this.mountNumber - 1];
292+
return basic.aylar[this.monthNumber - 1];
291293
},
292-
get mountName() {
293-
return basic.months[this.mountNumber - 1];
294+
get monthName() {
295+
return basic.months[this.monthNumber - 1];
294296
},
295297
get dayNumber() {
296298
let dt = new Date();
@@ -2025,6 +2027,7 @@ basic.resizeDetection.whenDetected = new ResizeObserver(function(entries) {
20252027
})
20262028

20272029
// When content is loaded,
2030+
20282031
window.addEventListener("load", function () {
2029-
basic.start()
2032+
basic.start();
20302033
});

library/basic.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

library/v1.6.4/.DS_Store

-6 KB
Binary file not shown.

library/v1.6.4/basic.css

Lines changed: 0 additions & 268 deletions
This file was deleted.

0 commit comments

Comments
 (0)