-
If you change `tournamentPromise` of `components/tournament/details/details.js` to:
``` js
tournamentPromise: {
get: function(){
var p = Tournament.get({id: this.a…
-
# Promises/A+ Extension: Synchronous Inspection
This proposal extends the [Promises/A+ specification](http://promises-aplus.github.com/promises-spec/) to cover synchronous inspection of a promise's f…
-
In the words of Ben, "fancy_doc is an ugly hack."
One way this has come back to bite us is that it breaks super - fancy_doc creates a new inherited class at run time, so that the method-resolution …
-
It would be nice to use a promise like interface after a sound has ended/stopped playing. Something like
`sound.play().then(function(){ /* do something */ });`
or something similar. Suggested im…
-
IMHO the interface would need polishing in regard to the response handling so that alternative implementations can pop up.
First off, the callback needs to be specified in detail. It can be modelled …
-
_From @wrr on September 13, 2016 8:51_
There is a difference in the early implementations of WebVR between Firefox and Chrome:
```
vrDisplay.requestPresent([{source: canvas}]).then(
function() …
-
Hey, it'd be great to see how this library compares with other promise cancellation implementations. In particular, I'm interested in the difference with http://bluebirdjs.com/docs/api/cancellation.ht…
-
**Client libraries**
- Language: JavaScript
- Version: 6.6.0
**Browsers tested**
- Chrome: FAIL
- Firefox: FAIL
- Native: FAIL
**System description:**
KMS in a Docker container and signa…
-
The behavior of `isConfigSupported` API for unsupported configurations is different on Chromium and Safari.
The specification says (for Audio and Video encoders and decoders):
"If config is no…
aboba updated
2 months ago
-
```javascript
const p1 = new Promise((resolve, reject) => {
const p2 = new Promise((resolve1) => {
setTimeout(() => {
resolve1(1);
}, 1000);
});
resolv…