Consistent naming of Mithril.js

This commit is contained in:
Stephan Hoyer 2022-02-18 09:08:10 +01:00
parent 7b1fda5b66
commit 885b3f9442
48 changed files with 269 additions and 269 deletions

View file

@ -22,7 +22,7 @@ var threads = [], current = null, loaded = false, error = false, notFound = fals
function loadThreads() {
loaded = false
api.home().then(function(response) {
document.title = "ThreaditJS: Mithril | Home"
document.title = "ThreaditJS: Mithril.js | Home"
threads = response.data
loaded = true
}, function() {
@ -34,7 +34,7 @@ function loadThread(id) {
loaded = false
notFound = false
api.thread(id).then(function(response) {
document.title = "ThreaditJS: Mithril | " + T.trimTitle(response.root.text);
document.title = "ThreaditJS: Mithril.js | " + T.trimTitle(response.root.text);
loaded = true
current = response
}, function(response) {

View file

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>Mithril • ThreadIt.js</title>
<title>Mithril.js • ThreadIt.js</title>
<link rel="stylesheet" href="https://threaditjs.com/reset.css"/>
<link rel="stylesheet" href="https://threaditjs.com/shared.css"/>
<link rel="stylesheet" href="colors.css"/>