Reviews
- Feature: send UX enhancements #1766
Features
- Working on Multisig feature #1695. Will send preliminary PRs next week.
| <form action="https://docs.google.com/forms/u/0/d/e/FORM_ID/formResponse" method="POST" target="hidden_iframe"> | |
| <input type="text" name="entry.123" placeholder="Your Name" required style="width: 100%; padding: 10px; margin-top: 8px; margin-bottom: 16px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px;"><br> | |
| <input type="email" name="entry.234" placeholder="Your Email" required style="width: 100%; padding: 10px; margin-top: 8px; margin-bottom: 16px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px;"><br> | |
| <input type="checkbox" name="entry.345" value="I consent" id="entry.345" required style="margin-right: 5px;"> | |
| <label for="entry.1283556572">I consent</label><br> | |
| <br> | |
| <button type="submit" style="background-color: #c4793d; | |
| ; color: white; padding: 14px 20px; border: none; border-radius: 4px; cursor: pointer; width: 100%; font-size: 16px;">REGISTER TO JOIN YOUR FREE BREATHWORK SESSION</button> | |
| </form> |
| SELECT 27182.8182846 AS a, 20000 AS b, 'lorem' AS c UNION ALL | |
| SELECT 31415.9265359 AS a, 40000 AS b, 'ipsum' AS c |
| select s.a FROM generate_series(1,5) AS s(a) |
| class Label extends React.Component{ | |
| constructor(props){ | |
| super(props); | |
| this.className='plain-label'; | |
| } | |
| render(){ | |
| return <span className={this.className}> | |
| {this.props.children} | |
| </span> | |
| } |
| Cannot call video.addEventListener because: | |
| • Either string [1] is incompatible with enum [2]. | |
| • Or string [1] is incompatible with enum [3]. | |
| • Or string [1] is incompatible with enum [4]. | |
| • Or string [1] is incompatible with enum [5]. | |
| • Or string [1] is incompatible with string literal wheel [6]. | |
| • Or string [1] is incompatible with enum [7]. | |
| • Or string [1] is incompatible with enum [8]. | |
| • Or string [1] is incompatible with enum [9]. |
| class Sample { | |
| dimensions: { width: number, height: number } | |
| get dimensions() { | |
| // get data | |
| const dimensions = getDimensions() | |
| // memoize | |
| Object.defineProperty(this, 'dimensions', { value: dimensions }) |
| import { has } from 'lodash-es' | |
| // @flow | |
| export function memoized( | |
| target: any, | |
| propertyKey: string, | |
| descriptor: PropertyDescriptor<*> | |
| ) { | |
| const originalGet = descriptor.get | |
| const memKey = '__memoized__' |