Skip to content

Commit d6c023c

Browse files
committed
Add contributions document (#27)
Ref gh-24
1 parent d01c0f7 commit d6c023c

File tree

1 file changed

+94
-0
lines changed

1 file changed

+94
-0
lines changed

Contributions.md

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Contributions
2+
3+
This document lists current and past contributions made to standards that has some relationship with the jQuery Foundation projects.
4+
5+
# W3C
6+
7+
## Pointer Events
8+
9+
- [Recommendation 24 February 2015](https://www.w3.org/TR/pointerevents/)
10+
- [Editor's draft](https://w3c.github.io/pointerevents/)
11+
- [Github](https://github.com/w3c/pointerevents)
12+
- participants: [Scott Gonzalez]
13+
14+
## Touch Events
15+
16+
- [Recommendation 10 October 2013](https://www.w3.org/TR/touch-events/)
17+
- [Editor's draft](https://w3c.github.io/touch-events/)
18+
- [Github](https://github.com/w3c/touch-events)
19+
- participants: [Scott Gonzalez]
20+
21+
## Other contributions
22+
23+
- [fixed the behavior](https://lists.w3.org/Archives/Public/public-whatwg-archive/2009Oct/0057.html) of `stepUp()` and `stepDown()` for `<input type="number">` based on the behavior of the spinner widget in __jQuery UI__. ([Scott Gonzalez]).
24+
- [Should a captured pointer send transition events by default?](https://github.com/w3c/pointerevents/issues/61) ([Scott Gonzalez])
25+
26+
# ECMAScript / TC39
27+
28+
## Current proposals:
29+
30+
| Proposal | Champion | Stage |
31+
|----------|----------|-------|
32+
| [String padding](https://github.com/tc39/proposal-string-pad-start-end) | [Jordan Harband] | 3 |
33+
| [Asynchronous Iterators](https://github.com/tc39/proposal-async-iteration) | [Kevin Smith] | 2 |
34+
| [Observable](https://github.com/zenparsing/es-observable) | [Kevin Smith] & [Jafar Husain] | 1 |
35+
| [Private Fields](https://github.com/zenparsing/es-private-fields) | [Kevin Smith] | 1 |
36+
| [Class and Property Decorators](https://github.com/wycats/javascript-decorators/blob/master/README.md) | [Yehuda Katz] & Jonathan Turner | 1 |
37+
| [`String.prototype.at`](https://github.com/mathiasbynens/String.prototype.at) | [Mathias Bynens] & [Rick Waldron] | 0 |
38+
| [Function Bind Syntax](https://github.com/zenparsing/es-function-bind) | [Kevin Smith] | 0 |
39+
40+
## Landed features:
41+
42+
| Feature | Version | Champion |
43+
|---------|---------|----------|
44+
| `Array.from` & `Array.of` | [ES2015][Array.from] | [Dave Herman] & [Rick Waldron] |
45+
| `Array#find` & `Array#findIndex` | [ES2015][Array#find] | [Rick Waldron] |
46+
| `Object.assign` | [ES2015][Object.assign] | [Rick Waldron] |
47+
| Exponentiation Operator (`**`) | [ES2016][Exp Operator] | [Rick Waldron] |
48+
| [`Object.values` & `Object.entries`][Object.entries-proposal] | [ES2016][Object.entries] | [Jordan Harband] |
49+
50+
[ES2015]: http://www.ecma-international.org/ecma-262/6.0/index.html
51+
[Array.from]: http://www.ecma-international.org/ecma-262/6.0/index.html#sec-array.from
52+
[Array.of]: http://www.ecma-international.org/ecma-262/6.0/index.html#sec-array.of
53+
[Object.entries-proposal]: https://github.com/tc39/proposal-object-values-entries
54+
[Exp Operator]: https://tc39.github.io/ecma262/2016/#sec-exp-operator
55+
[Object.entries]: https://tc39.github.io/ecma262/#sec-object.entries
56+
[Array#find]: http://www.ecma-international.org/ecma-262/6.0/index.html#sec-array.prototype.find
57+
[Object.assign]: http://www.ecma-international.org/ecma-262/6.0/index.html#sec-object.assign
58+
59+
## Failed proposals:
60+
61+
| Feature | Champion |
62+
|---------|----------|
63+
| [`Math.TAU`](https://esdiscuss.org/topic/math-tau) | [Rick Waldron] |
64+
65+
## TC39 Meeting Notes
66+
67+
- https://github.com/rwaldron/tc39-notes
68+
- The notes taken since [Rick Waldron] joined TC39 as a representative of the jQuery Foundation.
69+
70+
## Spec fixes
71+
72+
- [TypedArrays/ArrayBuffer/DataView constructor normalization/spec reform](https://github.com/tc39/ecma262/pull/410) ([Leo Balter])
73+
74+
# [ECMAScript Internationalization API Specification (Ecma-402)](https://github.com/tc39/ecma402)
75+
76+
[Rick Waldron] was the editor for the Second Edition and is [still a contributor](http://tc39.github.io/ecma402/) on the current 4th edition.
77+
78+
## Current proposals
79+
80+
| Proposal | Champion | Stage |
81+
|----------|----------|-------|
82+
| [Intl.NumberFormat round option](https://github.com/rxaviers/ecma402-number-format-round-option) | [Rafael Xavier] | 0 |
83+
| [Fix 9.2.3 LookupMatcher algorithm](https://github.com/rxaviers/ecma402-fix-lookup-matcher) | [Rafael Xavier] | 0 |
84+
85+
[Dave Herman]: https://github.com/dherman
86+
[Jafar Husain]: https://github.com/jhusain
87+
[Jordan Harband]: https://github.com/ljharb
88+
[Kevin Smith]: https://github.com/zenparsing
89+
[Leo Balter]: https://github.com/leobalter
90+
[Mathias Bynens]: https://github.com/mathiasbynens
91+
[Rafael Xavier]: https://github.com/rxaviers
92+
[Rick Waldron]: https://github.com/rwaldron
93+
[Scott Gonzalez]: https://github.com/scottgonzalez
94+
[Yehuda Katz]: https://github.com/wycatz

0 commit comments

Comments
 (0)