The latest releases of OpenTrack now support Tobii natively, I recommend going that route now instead of this method.
Thanks to user Henkeman in the comments, I
// Released under the MIT License | |
import * as React from 'react'; | |
export enum TransitionStates { | |
// `MOUNTED` means the child was mounted along with the parent transition group | |
MOUNTED, | |
// `ENTERED` means the child item was added AFTER the parent was mounted | |
ENTERED, | |
// `YEETED` implies the element has been removed, but we are still waiting |
The latest releases of OpenTrack now support Tobii natively, I recommend going that route now instead of this method.
Thanks to user Henkeman in the comments, I
{ | |
"printWidth": 120, | |
"trailingComma": "es5", | |
"bracketSpacing": false, | |
"singleQuote": true, | |
"bracketSameLine": true, | |
"overrides": [ | |
{ | |
"files": ["*.css", "*.styl"], | |
"options": { |
" NOTE: Only source this file once per session | |
if g:localvimrc_sourced_once | |
finish | |
endif | |
echom '{page} .lvimrc has been sourced' | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab |
#!/bin/sh | |
# | |
# This shell script passes all its arguments to the binary inside the | |
# MacVim.app application bundle. If you make links to this script as view, | |
# gvim, etc., then it will peek at the name used to call it and set options | |
# appropriately. | |
# | |
# Based on a script by Wout Mertens and suggestions from Laurent Bihanic. This | |
# version is the fault of Benji Fisher, 16 May 2005 (with modifications by Nico | |
# Weber and Bjorn Winckler, Aug 13 2007). |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft
, elem.offsetTop
, elem.offsetWidth
, elem.offsetHeight
, elem.offsetParent