Commit b2bcf6b2 by Kyle Fiedler

Fixed change language and location bugs

parent ce6b8419
...@@ -8,12 +8,13 @@ $(function() { ...@@ -8,12 +8,13 @@ $(function() {
log_event("profile", {"type":"location_show", "old":$("#location_sub").text()}); log_event("profile", {"type":"location_show", "old":$("#location_sub").text()});
if(loc) { if(loc) {
$("#description").html('<div style="color:#FF0000">'+ $("#description").html('<div>'+
"Preferred format is city, state, country (so for us, "+ "Preferred format is city, state, country (so for us, "+
"&quot;Cambridge, Massachusetts, USA&quot;), but give "+ "&quot;Cambridge, Massachusetts, USA&quot;), but give "+
"as much or as little detail as you want. </div>"); "as much or as little detail as you want. </div>");
loc=false; loc=false;
$("#location_sub").html('<input id="id_loc_text" type="text" name="loc_text" />'+ $("#location_sub").html('<input id="id_loc_text" type="text" name="loc_text" />'+
'<input type="button" id="change_loc_button" value="Change" />'); '<input type="button" id="change_loc_button" value="Change" />');
$("#change_loc_button").click(function() { $("#change_loc_button").click(function() {
...@@ -72,8 +73,12 @@ $(function() { ...@@ -72,8 +73,12 @@ $(function() {
<ul> <ul>
<li>Forum name: ${username}</li> <li>Forum name: ${username}</li>
<li>E-mail: ${email}</li> <li>E-mail: ${email}</li>
<li><a href="" id="change_location">Location: ${location}</a></li> <li>
<li><a href="" id="change_language">Language: ${language}</a></li> Location: <div id="location_sub">${location}</div><div id="description"></div> <a href="#" id="change_location">Change</a>
</li>
<li>
Language: <div id="language_sub">${language}</div> <a href="#" id="change_language">Change</a>
</li>
</ul> </ul>
<!-- <div><a class="modal" href="#change_password_pop">Reset password</a></div> --> <!-- <div><a class="modal" href="#change_password_pop">Reset password</a></div> -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment