Skip to content

Commit 9182d06

Browse files
update
1 parent 3ea9e1e commit 9182d06

13 files changed

Lines changed: 38 additions & 50 deletions

File tree

CATopalian_JavaScript_Calendar.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323

2424
<script src = 'src/js/4make/makeInterfaceGrid.js'></script>
2525

26-
<script src = 'src/js/4make/makeTitleOfApp.js'></script>
27-
2826
<script src = 'src/js/date/getDayName.js'></script>
2927

3028
<script src = 'src/js/sound/sound.js'></script>

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Dedicated to God the Father
22

33
CATopalian_JavaScript_Calendar
44

5-
All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
5+
All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
66

77
https://github.com/ChristopherTopalian
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Use App: https://christopherandrewtopalian.github.io/CATopalian_JavaScript_Calen
2929
//----//
3030

3131
// Dedicated to God the Father
32-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
32+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
3333
// https://github.com/ChristopherTopalian
3434
// https://github.com/ChristopherAndrewTopalian
3535
// https://sites.google.com/view/CollegeOfScripting

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
//----//
6767

6868
// Dedicated to God the Father
69-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
69+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
7070
// https://github.com/ChristopherTopalian
7171
// https://github.com/ChristopherAndrewTopalian
7272
// https://sites.google.com/view/CollegeOfScripting

src/css/style001.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
body
44
{
5+
margin: 3px 5px;
56
background-color: rgb(30, 30, 30);
67
font-family: Arial;
78
color: rgb(255, 255, 255);
@@ -77,7 +78,7 @@ details[open] > summary::before
7778
/*----*/
7879

7980
/* Dedicated to God the Father */
80-
/* All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025 */
81+
/* All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026 */
8182
/* https://github.com/ChristopherTopalian */
8283
/* https://github.com/ChristopherAndrewTopalian */
8384
/* https://sites.google.com/view/CollegeOfScripting */

src/js/1shortcuts/shortcuts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function cl(whichMessage)
2727
//----//
2828

2929
// Dedicated to God the Father
30-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
30+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
3131
// https://github.com/ChristopherTopalian
3232
// https://github.com/ChristopherAndrewTopalian
3333
// https://sites.google.com/view/CollegeOfScripting

src/js/3data/calendar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ let calendar = [
7777
//----//
7878

7979
// Dedicated to God the Father
80-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
80+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
8181
// https://github.com/ChristopherTopalian
8282
// https://github.com/ChristopherAndrewTopalian
8383
// https://sites.google.com/view/CollegeOfScripting

src/js/4make/makeInterface.js

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
function makeInterface(whichArray, whichYear)
44
{
5+
let titleAndLink = ce('a');
6+
titleAndLink.href = 'https://github.com/ChristopherAndrewTopalian/CATopalian_JavaScript_Calendar';
7+
titleAndLink.target = '_blank';
8+
titleAndLink.style.fontFamily = 'Arial';
9+
titleAndLink.style.fontWeight = 'bold';
10+
titleAndLink.textContent = 'CATopalian JavaScript Calendar';
11+
titleAndLink.style.fontSize = '14px';
12+
titleAndLink.style.textDecoration = 'none';
13+
titleAndLink.style.color = 'rgb(0, 255, 255)';
14+
ba(titleAndLink);
15+
16+
//-//
17+
518
let mainDiv = ce('div');
619
mainDiv.id = 'mainDiv';
720
mainDiv.style.display = 'flex';
@@ -66,7 +79,7 @@ function makeInterface(whichArray, whichYear)
6679
//----//
6780

6881
// Dedicated to God the Father
69-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
82+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
7083
// https://github.com/ChristopherTopalian
7184
// https://github.com/ChristopherAndrewTopalian
7285
// https://sites.google.com/view/CollegeOfScripting

src/js/4make/makeInterfaceGrid.js

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
function makeInterfaceGrid(whichArray, whichYear)
44
{
5+
let titleAndLink = ce('a');
6+
titleAndLink.href = 'https://github.com/ChristopherAndrewTopalian/CATopalian_JavaScript_Calendar';
7+
titleAndLink.target = '_blank';
8+
titleAndLink.style.fontFamily = 'Arial';
9+
titleAndLink.style.fontWeight = 'bold';
10+
titleAndLink.textContent = 'CATopalian JavaScript Calendar';
11+
titleAndLink.style.fontSize = '14px';
12+
titleAndLink.style.textDecoration = 'none';
13+
titleAndLink.style.color = 'rgb(0, 255, 255)';
14+
ba(titleAndLink);
15+
16+
//-//
17+
518
let mainDiv = ce('div');
619
mainDiv.id = 'mainDiv';
720
mainDiv.style.display = 'flex';
@@ -92,7 +105,7 @@ function makeInterfaceGrid(whichArray, whichYear)
92105
//----//
93106

94107
// Dedicated to God the Father
95-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
108+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
96109
// https://github.com/ChristopherTopalian
97110
// https://github.com/ChristopherAndrewTopalian
98111
// https://sites.google.com/view/CollegeOfScripting

src/js/4make/makeTitleOfApp.js

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

0 commit comments

Comments
 (0)