deepskyblue

Results 80 comments of deepskyblue

Of course :) I'm using `aria-label` for the tooltip content so the only way to customize all tooltips would be by the somewhat cumbersome attribute selectors. Being able to use...

I accounted for both modes in case `'use strict';` was ever added here or in an outer closure. #### [strict mode](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions_and_function_scope/Strict_mode) - No [boxing](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions_and_function_scope/Strict_mode#.22Securing.22_JavaScript) occurs. thisArg values resolve exactly. `this`...

Consider the docs, and keeping them simple. `.hasEvent` can be used with array methods by passing an element or tagname as the thisArg. [Then show examples](#issue-25235642). Questions to answer are:...

Gotcha. Using semver is wise. Most developers expect it I think. WordPress seems isolated from the greater development community. Is the WordPress versioning system documented online?

Seems like a good idea to me but is there a simpler way maybe to do the check? Like comparing `nodeType`? [It says here that shadow root is 11](https://github.com/whatwg/dom/issues/330) ```...

@jonschlinkert Thanks for the fast reply!

@mylastore better late than never https://ryanve.github.io/flexboxes

Jordan @builtbyjordan asked too. [Yesterday I put these online.](https://ryanve.github.io/flexboxes)

Thanks @mbrowne yes. I've been considering something with increments in `em` units because these are [ideal for media queries](https://zellwk.com/blog/media-query-units/). I'd like to avoid breakpoint variables because I think in a...

Thanks—great input. Actually something like `class="flex@no-grid"` was something I considered too for use with fallbacks. I've been wanting to develop a grid library too.