Update post-detail.tag

This commit is contained in:
syuilo⭐️ 2017-03-18 21:01:01 +09:00
parent 0d27dfe414
commit c79d490ec9
1 changed files with 5 additions and 6 deletions

View File

@ -341,12 +341,11 @@
</style> </style>
<script> <script>
this.mixin('api');
import compile from '../../common/scripts/text-compiler'; import compile from '../../common/scripts/text-compiler';
import getPostSummary from '../../common/scripts/get-post-summary';
import openPostForm from '../scripts/open-post-form';
this.getPostSummary = require('../../common/scripts/get-post-summary'); this.mixin('api');
this.openPostForm = require('../scripts/open-post-form');
this.fetching = true; this.fetching = true;
this.loadingContext = false; this.loadingContext = false;
@ -364,7 +363,7 @@
post: post, post: post,
isRepost: isRepost, isRepost: isRepost,
p: p, p: p,
summary: this.getPostSummary(p) summary: getPostSummary(p)
}); });
this.trigger('loaded'); this.trigger('loaded');
@ -421,7 +420,7 @@
}); });
this.reply = () => { this.reply = () => {
this.openPostForm({ openPostForm({
reply: this.p reply: this.p
}); });
}; };