UNPKG
bbpro
Version:
latest (6.1.5)
6.1.5
6.1.4
BrowserBox - remote browser isolation tool
github.com/BrowserBox/BrowserBox
i5ik/vf
bbpro
/
dist
/
node_modules
/
bang.html
/
docs
/
components
/
sg-cell
/
script.js
18 lines
(15 loc)
•
308 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class
Component
extends
Base
{ ScrollIntoView() {
this
.scrollIntoView(); } ShowFormula() {
const
{state} =
this
; state.editFormula =
true
;
this
.updateIfChanged(state); } ShowValue() {
const
{state} =
this
; state.editFormula =
false
;
this
.updateIfChanged(state); } }