diff options
author | Dave Arter <davea@mysociety.org> | 2018-04-26 22:41:17 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2018-04-30 13:18:58 +0100 |
commit | 3b766eaaadcdaa12960d8dcc5080a4e4af9120fc (patch) | |
tree | 6d72fb8cf8ca9c7c21e55caac7fe12df8374b119 | |
parent | c0206fcc639351aaca1ad57c855744a742c98fa9 (diff) |
Allow mailto: URLs, e.g. the one on the help page
Fixes #263.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | config.xml-example | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 90b406d..b2e052b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Bugfixes - Skip empty report details screen. - Correctly set user title. #156 + - Allow mailto: links to be followed. #263 - Development improvements - CONFIG.SKIP_CONFIRM_REPORT flag to skip confirmation screen - Ensure compatibility with latest Cordova versions. diff --git a/config.xml-example b/config.xml-example index e5dc937..693ed45 100644 --- a/config.xml-example +++ b/config.xml-example @@ -8,7 +8,7 @@ mySociety </author> <content src="index.html" /> - + <allow-intent href="mailto:*" /> <access origin="http://127.0.0.1*" /> <access origin="*://*.openstreetmap.org" /> <access origin="*://*.opencyclemap.org" /> |