Skip to content

Commit 259e810

Browse files
committed
Consistent naming of Mithril.js
1 parent b20303b commit 259e810

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

threaditjs/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var threads = [], current = null, loaded = false, error = false, notFound = fals
2222
function loadThreads() {
2323
loaded = false
2424
api.home().then(function(response) {
25-
document.title = "ThreaditJS: Mithril | Home"
25+
document.title = "ThreaditJS: Mithril.js | Home"
2626
threads = response.data
2727
loaded = true
2828
}, function() {
@@ -34,7 +34,7 @@ function loadThread(id) {
3434
loaded = false
3535
notFound = false
3636
api.thread(id).then(function(response) {
37-
document.title = "ThreaditJS: Mithril | " + T.trimTitle(response.root.text);
37+
document.title = "ThreaditJS: Mithril.js | " + T.trimTitle(response.root.text);
3838
loaded = true
3939
current = response
4040
}, function(response) {

threaditjs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>Mithril • ThreadIt.js</title>
5+
<title>Mithril.js • ThreadIt.js</title>
66
<link rel="stylesheet" href="https://threaditjs.com/reset.css"/>
77
<link rel="stylesheet" href="https://threaditjs.com/shared.css"/>
88
<link rel="stylesheet" href="colors.css"/>

todomvc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>Mithril • TodoMVC</title>
5+
<title>Mithril.js • TodoMVC</title>
66
<link rel="stylesheet" href="base.css">
77
<link rel="stylesheet" href="app.css">
88
</head>

0 commit comments

Comments
 (0)