diff options
author | Struan Donald <struan@exo.org.uk> | 2013-08-05 16:56:43 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-08-05 16:56:43 +0100 |
commit | edc385fdac71547b296f54dd2ec32e25d950544f (patch) | |
tree | bf8e4726f047d5422be382f89c7696128b8c292d | |
parent | 9a22732b8faaab692174317ff6ca4d64e4f19f30 (diff) |
fix .attr call
-rw-r--r-- | src/js/views/around.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/views/around.js b/src/js/views/around.js index eae53ff..910cf38 100644 --- a/src/js/views/around.js +++ b/src/js/views/around.js @@ -172,7 +172,7 @@ if ( !fixmystreet.map ) { $('#relocate').hide(); $('#mark-here').hide(); - $('#pc').attr('Search for a place or postcode.').focus(); + $('#pc').attr('placeholder', 'Search for a place or postcode.').focus(); } $('#front-howto').html('<p>' + msg + '</msg>'); $('#front-howto').show(); |