This commit is contained in:
syuilo 2017-02-20 14:55:20 +09:00
parent b0c1ec3124
commit 4c43573c1e
1 changed files with 6 additions and 6 deletions

View File

@ -318,14 +318,14 @@
this.mixin('user-preview'); this.mixin('user-preview');
this.mixin('NotImplementedException'); this.mixin('NotImplementedException');
this.post = this.opts.post this.post = this.opts.post;
this.is-repost = this.post.repost? and !this.post.text? this.isRepost = this.post.repost != null && this.post.text == null;
this.p = if @is-repost then this.post.repost else this.post this.p = this.isRepost ? this.post.repost : this.post;
this.title = @date-stringify this.p.created_at this.title = this.dateStringify(this.p.created_at);
this.url = CONFIG.url + '/' + this.p.user.username + '/' + this.p.id this.url = CONFIG.url + '/' + this.p.user.username + '/' + this.p.id;
this.is-detail-opened = false this.isDetailOpened = false;
this.on('mount', () => { this.on('mount', () => {
if this.p.text? if this.p.text?