From de5626e4b6c2d8e23e8499c828323f622dd80f26 Mon Sep 17 00:00:00 2001 From: NN Date: Wed, 26 Dec 2012 20:10:18 +0100 Subject: [PATCH] displaying homepage via `basic.website_url` --- WebKit/scripts/controller/Profile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WebKit/scripts/controller/Profile.js b/WebKit/scripts/controller/Profile.js index 9a376fd..8e37778 100644 --- a/WebKit/scripts/controller/Profile.js +++ b/WebKit/scripts/controller/Profile.js @@ -208,9 +208,9 @@ function(HostApp, Core, Paths, URI) { this.populate(this.profile_template.gender, basic.gender); 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.parentNode.parentNode.style.display = ""; @@ -372,4 +372,4 @@ function(HostApp, Core, Paths, URI) { return Profile; -}); \ No newline at end of file +});