displaying homepage via basic.website_url
This commit is contained in:
parent
a332acad4f
commit
de5626e4b6
1 changed files with 3 additions and 3 deletions
|
@ -208,9 +208,9 @@ function(HostApp, Core, Paths, URI) {
|
||||||
this.populate(this.profile_template.gender, basic.gender);
|
this.populate(this.profile_template.gender, basic.gender);
|
||||||
this.populate(this.profile_template.bio, basic.bio);
|
this.populate(this.profile_template.bio, basic.bio);
|
||||||
|
|
||||||
if(basic.url) {
|
if(basic.website_url) {
|
||||||
|
|
||||||
var url = basic.url;
|
var url = basic.website_url;
|
||||||
this.profile_template.url.innerText = url;
|
this.profile_template.url.innerText = url;
|
||||||
this.profile_template.url.parentNode.parentNode.style.display = "";
|
this.profile_template.url.parentNode.parentNode.style.display = "";
|
||||||
|
|
||||||
|
@ -372,4 +372,4 @@ function(HostApp, Core, Paths, URI) {
|
||||||
|
|
||||||
return Profile;
|
return Profile;
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue