summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--README.md2
-rw-r--r--client/lib/escapeActions.js4
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5eae9dbf..ec8801fe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,7 +10,8 @@ This release adds the following new features:
and fixes the following bugs:
* [When Wekan starts, there's "here1 false" messages in
- console](https://github.com/wekan/wekan/issues/1028).
+ console](https://github.com/wekan/wekan/issues/1028);
+* [IE11 problem when closing cards, sidebar etc](https://github.com/wekan/wekan/pull/1042).
Thanks to GitHub users huneau and nztqa for their contributions.
diff --git a/README.md b/README.md
index 32d1dfc2..4e517e5b 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ with [Meteor](https://www.meteor.com).
[wekan_issues]: https://github.com/wekan/wekan/issues
[wefork_issues]: https://github.com/wefork/wekan/issues
[docker_image]: https://hub.docker.com/r/wekanteam/wekan/
-[travis_badge]: https://travis-ci.org/wekan/wekan.svg?branch=meteor-1.4
+[travis_badge]: https://travis-ci.org/wekan/wekan.svg?branch=devel
[travis_status]: https://travis-ci.org/wekan/wekan
[wekan_wiki]: https://github.com/wekan/wekan/wiki
[translate_wekan]: https://www.transifex.com/wekan/wekan/
diff --git a/client/lib/escapeActions.js b/client/lib/escapeActions.js
index dc6b05b7..666e33e0 100644
--- a/client/lib/escapeActions.js
+++ b/client/lib/escapeActions.js
@@ -134,3 +134,7 @@ $(document).on('click', (evt) => {
EscapeActions.clickExecute(evt.target, 'multiselection');
}
});
+
+$(document).on('click', 'a[href=#]', (evt) => {
+ evt.preventDefault();
+});