diff options
author | Struan Donald <struan@exo.org.uk> | 2013-08-15 17:47:08 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-08-15 17:47:08 +0100 |
commit | e7e454991753d6b8f19643dfa64eb62f85888bbc (patch) | |
tree | 1288f0822df4e094472d5f05ea6bffba0ac8caaa | |
parent | c5a890e7b9f8e70c20422c3b8bc1ac273ff112af (diff) |
Correctly close location error message tag
-rw-r--r-- | src/js/views/around.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js/views/around.js b/src/js/views/around.js index 2da7fa6..4db5656 100644 --- a/src/js/views/around.js +++ b/src/js/views/around.js @@ -176,7 +176,8 @@ $('#mark-here').hide(); $('#pc').attr('placeholder', FMS.strings.search_placeholder).focus(); } - $('#front-howto').html('<p>' + msg + '</msg>'); + console.log(msg); + $('#front-howto').html('<p>' + msg + '</p>'); $('#front-howto').show(); this.displayHelpIfFirstTime(); |