New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

bream

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bream

Brim + Scream for iOS 8+

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

install

npm install bream

usage

import { Scream, Brim } from 'bream'

const mask = document.querySelector('#brim-mask')
const main = document.querySelector('#brim-main')

try {
  // Here for iOS
  const brim = new Brim(window, {
    viewport: Scream({
      width: {
        portrait: window.screen.width,
        landscape: window.screen.height,
      },
    }),
  })
  mask.innerHTML = '<h1>Main is hidden!!</h1>'
  brim.on('viewchange', e => {
    if (e.viewName === 'minimal') {
      setTimeout(() => {
        main.style.height = (parseInt(main.style.height) - 44) + 'px'
      }, 0)
    }
  })
} catch (e) {
  // Here for others
  console.log(e.message)
  document.body.removeChild(mask)
  document.querySelector('meta[name="viewport"]').setAttribute('content', [
    'width=device-width',
    'initial-scale=1.0',
    'maximum-scale=1.0',
    'user-scalable=0',
  ].join(','))
}

author

gajus/brim

Keywords

minimal-ui

FAQs

Package last updated on 20 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts