Skip to content

Commit

Permalink
release: v2.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Jan 28, 2023
1 parent d4507ff commit 6e0a2a4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.11.2 (28 Jan 2023)

* fix: check safe area error

## 2.11.1 (28 Jan 2023)

* fix: bottom safe area
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eruda",
"version": "2.11.1",
"version": "2.11.2",
"description": "Console for Mobile Browsers",
"main": "eruda.js",
"browserslist": [
Expand Down
4 changes: 3 additions & 1 deletion src/DevTools/DevTools.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import isDarkMode from 'licia/isDarkMode'
import extend from 'licia/extend'
import isStr from 'licia/isStr'
import startWith from 'licia/startWith'
import ready from 'licia/ready'
import evalCss from '../lib/evalCss'
import { isDarkTheme } from '../lib/themes'
import LunaNotification from 'luna-notification'
Expand Down Expand Up @@ -54,7 +55,8 @@ export default class DevTools extends Emitter {
this._initTab()
this._initNotification()
this._initModal()
this._checkSafeArea()

ready(() => this._checkSafeArea())
this._bindEvent()
}
show() {
Expand Down

0 comments on commit 6e0a2a4

Please sign in to comment.