Skip to content

Commit 53436b3

Browse files
authored
Merge pull request #498 from intercom/liuting/version_5.1.1
Release 5.1.1
2 parents 917bbdc + 76abce8 commit 53436b3

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
# Version 5.1.1
4+
17-08-2018
5+
6+
**Bug Fixes**
7+
8+
- Fixed the crash while loading large images
9+
- Fixed the bug where keyboard covers composer on tablets
10+
- Fixed text overlap in the conversation list on tablets
11+
- Fixed an issue where teammate avatar flickers during UI updates
12+
- Bug fix for toolbar title doesn't show up in Messenger App sheets
13+
- Fixed a bug that was causing Messenger App sheet to open in browser
14+
- Reorder dependencies for failing PhoneGap build
15+
316
# Version 5.1.0
417
19-07-2018
518

Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/index.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
<!-- Generated by javadoc -->
66
<title>intercom-sdk-base API</title>
77
<script type="text/javascript">
8-
targetPage = "" + window.location.search;
9-
if (targetPage != "" && targetPage != "undefined")
10-
targetPage = targetPage.substring(1);
11-
if (targetPage.indexOf(":") != -1 || (targetPage != "" && !validURL(targetPage)))
12-
targetPage = "undefined";
8+
tmpTargetPage = "" + window.location.search;
9+
if (tmpTargetPage != "" && tmpTargetPage != "undefined")
10+
tmpTargetPage = tmpTargetPage.substring(1);
11+
if (tmpTargetPage.indexOf(":") != -1 || (tmpTargetPage != "" && !validURL(tmpTargetPage)))
12+
tmpTargetPage = "undefined";
13+
targetPage = tmpTargetPage;
1314
function validURL(url) {
1415
try {
1516
url = decodeURIComponent(url);

0 commit comments

Comments
 (0)