Skip to content

Commit 36e35d5

Browse files
committed
v13.1.1
1 parent e4685e6 commit 36e35d5

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gleap",
3-
"version": "13.1.0",
3+
"version": "13.1.1",
44
"main": "build/index.js",
55
"scripts": {
66
"start": "webpack serve",

src/GleapStreamedEvent.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Gleap, { GleapFrameManager, GleapMetaDataManager, GleapSession } from "./Gleap";
1+
import Gleap, { GleapFrameManager, GleapMetaDataManager, GleapNotificationManager, GleapSession } from "./Gleap";
22
import { gleapDataParser } from "./GleapHelper";
33

44
export default class GleapStreamedEvent {
@@ -102,6 +102,7 @@ export default class GleapStreamedEvent {
102102
try {
103103
if (message.name === 'update') {
104104
const { a, u } = message.data;
105+
105106
if (!GleapFrameManager.getInstance().isOpened()) {
106107
if (a) {
107108
Gleap.getInstance().performActions(a);

src/UI.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -780,18 +780,18 @@ export const injectStyledCSS = (
780780
781781
.bb-notification-bubble {
782782
position: absolute;
783-
top: -6px;
784-
right: -6px;
785-
min-width: 22px;
783+
top: -5px;
784+
right: -5px;
785+
min-width: 20px;
786786
padding: 0px 4px;
787-
height: 22px;
788-
border-radius: 22px;
787+
height: 20px;
788+
border-radius: 20px;
789789
background-color: red;
790790
color: #fff;
791-
font-size: 12px;
791+
font-size: 11px;
792792
font-family: sans-serif;
793793
text-align: center;
794-
line-height: 22px;
794+
line-height: 20px;
795795
}
796796
797797
.bb-notification-bubble--hidden {

0 commit comments

Comments
 (0)