Update user-profile.tag

This commit is contained in:
syuilo⭐️ 2017-02-21 21:48:00 +09:00
parent 2de118a45d
commit 030dbbc2eb
1 changed files with 10 additions and 8 deletions

View File

@ -80,20 +80,22 @@
</style>
<script>
this.age = require 's-age'
this.age = require('s-age');
this.mixin('i');
this.user = this.opts.user
this.user = this.opts.user;
this.show-following = () => {
window = document.body.appendChild(document.createElement('mk-user-following-window'));
riot.mount window, do
this.showFollowing = () => {
riot.mount(document.body.appendChild(document.createElement('mk-user-following-window')), {
user: this.user
});
};
this.show-followers = () => {
window = document.body.appendChild(document.createElement('mk-user-followers-window'));
riot.mount window, do
this.showFollowers = () => {
riot.mount(document.body.appendChild(document.createElement('mk-user-followers-window')), {
user: this.user
});
};
</script>
</mk-user-profile>