Skip to content

Commit c1152d9

Browse files
update
1 parent 6e6eee6 commit c1152d9

File tree

18 files changed

+37
-53
lines changed

18 files changed

+37
-53
lines changed

CATopalian_JavaScript_Art_Studio.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<!-- https://github.com/ChristopherAndrewTopalian -->
55
<!-- CATopalian_JavaScript_Art_Studio.html -->
66

7-
<html>
7+
<!DOCTYPE html>
8+
<html lang = 'en'>
89
<head>
910
<title> CATopalian JavaScript Art Studio </title>
1011

@@ -20,8 +21,6 @@
2021

2122
<script src = 'src/js/4make/makeInterface.js'></script>
2223

23-
<script src = 'src/js/4make/makeTitleOfApp.js'></script>
24-
2524
<script src = 'src/js/filters/setFilters.js'></script>
2625

2726
<script src = 'src/js/5menu/menuOptions.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_Art_Studio
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
@@ -95,7 +95,7 @@ This project shows:
9595
//----//
9696

9797
// Dedicated to God the Father
98-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
98+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
9999
// https://github.com/ChristopherTopalian
100100
// https://github.com/ChristopherAndrewTopalian
101101
// 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ a:active
122122
/*----*/
123123

124124
/* Dedicated to God the Father */
125-
/* All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025 */
125+
/* All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026 */
126126
/* https://github.com/ChristopherTopalian */
127127
/* https://github.com/ChristopherAndrewTopalian */
128128
/* 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/2worldVariables/worldVariables.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let actorName;
99
//----//
1010

1111
// Dedicated to God the Father
12-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
12+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
1313
// https://github.com/ChristopherTopalian
1414
// https://github.com/ChristopherAndrewTopalian
1515
// https://sites.google.com/view/CollegeOfScripting

src/js/4make/makeInterface.js

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

33
function makeInterface()
44
{
5+
let theTitle = ce('a');
6+
theTitle.href = 'https://github.com/ChristopherAndrewTopalian/CATopalian_JavaScript_Art_Studio';
7+
theTitle.target = '_blank';
8+
theTitle.textContent = 'CATopalian JavaScript Art Studio';
9+
theTitle.style.position = 'absolute';
10+
theTitle.style.right = 12 + 'px';
11+
theTitle.style.bottom = 6 + 'px';
12+
theTitle.style.fontFamily = 'Arial';
13+
theTitle.style.fontSize = '15px';
14+
theTitle.style.fontWeight = 'bold';
15+
theTitle.style.textAlign = 'right';
16+
theTitle.style.lineHeight = 15 + 'px';
17+
theTitle.style.textDecoration = 'none';
18+
theTitle.style.color = 'rgb(0, 200, 200)';
19+
theTitle.style.textShadow = '0px 1px 1px rgb(0, 0, 0)';
20+
theTitle.style.zIndex = 10000;
21+
ba(theTitle);
22+
523
// we make a mainDiv container
624
let mainDiv = ce('div');
725
mainDiv.id = 'mainDiv';
@@ -256,7 +274,7 @@ function makeInterface()
256274
//----//
257275

258276
// Dedicated to God the Father
259-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
277+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
260278
// https://github.com/ChristopherTopalian
261279
// https://github.com/ChristopherAndrewTopalian
262280
// https://sites.google.com/view/CollegeOfScripting

src/js/4make/makeTitleOfApp.js

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

src/js/5menu/menuOptions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,7 @@ function menuOptions(whichId)
12291229
//-//
12301230

12311231
let credits = ce('div');
1232-
credits.textContent = 'All Rights Reserved (c) Copyright 2000-2025';
1232+
credits.textContent = 'All Rights Reserved (c) Copyright 2000-2026';
12331233
credits.style.fontSize = '13px';
12341234
credits.style.color = 'rgb(120, 120, 120)';
12351235
thePanel.append(credits);
@@ -1238,7 +1238,7 @@ function menuOptions(whichId)
12381238
//----//
12391239

12401240
// Dedicated to God the Father
1241-
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025
1241+
// All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026
12421242
// https://github.com/ChristopherTopalian
12431243
// https://github.com/ChristopherAndrewTopalian
12441244
// https://sites.google.com/view/CollegeOfScripting

0 commit comments

Comments
 (0)