Compare commits

..

4 Commits

Author SHA1 Message Date
syuilo
c8dd8341ca 2.35.2 2018-06-10 03:58:12 +09:00
syuilo
8bcf44bc16 ✌️ 2018-06-10 03:55:51 +09:00
syuilo
50b37a8420 oops 2018-06-10 03:48:38 +09:00
syuilo
22df795733 Fix bug 2018-06-10 03:47:09 +09:00
2 changed files with 5 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
"version": "2.35.1",
"version": "2.35.2",
"clientVersion": "1.0.6360",
"codename": "nighthike",
"main": "./built/index.js",

View File

@@ -25,8 +25,10 @@ const handlers = {
hashtag({ document }, { hashtag }) {
const a = document.createElement('a');
a.href = '/search?q=#' + hashtag;
a.textContent = hashtag;
a.href = config.url + '/search?q=#' + hashtag;
a.textContent = '#' + hashtag;
a.setAttribute('rel', 'tag');
document.body.appendChild(a);
},
'inline-code'({ document }, { code }) {