diff options
| -rw-r--r-- | script.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -29,7 +29,7 @@ function route() {      if (!latLon) {          document.title = 'Share a location';          content.append(createEl('h1', {}, [document.title])); -        const input = createEl('input'); +        const input = createEl('input', { placeholder: '55.7, 12.5' });          const button = createEl('button', {}, ['Share']);          const inputGroup = createEl('div', { class: 'input-group' }, [input, button]);          const errorDiv = createEl('div', { class: 'error' }); | 
