06:40
<annevk>
MikeSmith: it seems for DOM the Bugzilla link broke as well
06:41
<annevk>
MikeSmith: maybe time has come to more aggressively move things to GitHub, just seems a bit spammy on both sides
10:18
<tobie>
I have a `start` method that transitions state (it starts the sensor polling, and goes from state=idle to state=active) and returns a promise. Should it return the same promise if it's called a second time? Or should it return a new promise each time it's called?
10:19
<tobie>
i.e. should: sensor.start() === sensor.start() ?
10:22
<tobie>
^ Domenic: looked at your TAG findings on the topic and while this seems clear for props (e.g. dom.ready.then...) it wasn't obvious for methods.
13:22
<annevk>
tobie: why not just only allow it to be called in the idle state?
13:39
<tobie>
annevk: so reject the promise otherwise? Seems less user friendly though.
13:45
<annevk>
tobie: nobody really complains about that aspect of XHR
13:45
<annevk>
tobie: but dunno, seems somewhat better than storing the promise
13:48
<tobie>
Definitely easier to spec. :)