Skip to content

Commit

Permalink
fix: 修复getSystemInfoSync接口返回的statusBarHeight属性与其他平台拼写不同的问题 close dclo…
Browse files Browse the repository at this point in the history
  • Loading branch information
zhetengbiji committed Mar 12, 2019
1 parent b64ad52 commit a9eb75e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platforms/h5/service/api/device/get-system-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function getSystemInfoSync () {
var screenWidth = screen.width
var screenHeight = screen.height
var language = navigator.language
var statusbarHeight = 0
var statusBarHeight = 0
var osname
var osversion
var model
Expand Down Expand Up @@ -86,7 +86,7 @@ export function getSystemInfoSync () {
screenWidth,
screenHeight,
language,
statusbarHeight,
statusBarHeight,
system,
platform,
model
Expand Down

0 comments on commit a9eb75e

Please sign in to comment.