deepskyblue

Results 80 comments of deepskyblue

@jasonsturges thank you i've been wondering whether lunar days are different and i think lunar days are different than earth days. For example just before the new moon tomorrow will...

[An Indian women explains about it YouTube](https://youtu.be/fN_HGYd18j0). Sounds calculable in a global way but she says timezone has influence in application with local sunrise. [MoonHoroscope](http://moonhoroscope.com) has it on their homepage.

`removeAttr()` should stay exposed for jQuery compatibility.

The issue seems isolated to when the `body` is `position:relative`. If the `body` is in its natural `position:static` then descendent offsets seem correct even when relative. Do your findings agree?

This may relate to the [nature of QSA](http://www.w3.org/TR/selectors-api/#findelements). It effectively queries the whole document and then filters for descendants. ``` js 1 === document.documentElement.querySelectorAll('html body').length ``` whereas ``` js 0...

The temp `[id]` is a clever solution. qSA's behavior is not intuitive. But when aware of it, it doesn't seem too problematic either. Chained finds `.find('ul').find('li')` can ensure the other...

It makes sense to include the checks. `false` could suffice if no `in` tests are needed: ``` js var doc = typeof document !== 'undefined' && document ```

Does `.isNative` refer to the `element`, the `type`, or the `element`/`type` combination?

Thanks @ded I agree about the tests. Let's hope at least @rvagg can run them.

@jakutis `context` can be any object. I suggest you use `build.call({})` and then assign to `window` if needed. `definition` only uses `context` for [`noConflict()`](../blob/a235704e5f823889ce8e5e4b7fa92b2ba54d7901/bean.js#L718-L721)