Dan Tonon

Results 25 issues of Dan Tonon

Babel is able to transpile code written in es2017 syntax using the `babel-preset-es2017` plugin. `babel-plugin-add-module-exports` is only compatible with `babel-preset-es2015` though. Since this plugin is vital for modular javascript development,...

conflicts pure esmodules

Screen readers are able to trigger Javascript and read at least some css. When they come across things that are display:none, they skip over those elements. So even though you...

````html ```` converts into ``````pug //if lt IE 9 script(src='ie8-scripts.js') `````` which converts into ````html ```` I think it just needs to literally output the html as is if it...

minor bug

I'm writing Cypress tests for my React Time Input Polyfill at the moment. https://dan503.github.io/react-time-input-polyfill/ Part of the functionality is that when you press the `[Tab]` key, it goes to the...

Would you be interested in a pull request that added automated svg-spriting to the build process? ## How you would use it 1. Save an svg file into this folder:...

Add a "copy URL to clipboard" link at the bottom of the page so that people can easily share their quiz results without having to manually copy/paste from the URL...

The original styling that you have out of the box for the upgrade message is both inaccessible by default and it is a bit difficult to override with custom styles...

When the content is too tall for the screen, the sticky destroys itself. This makes sense as the default behavior because otherwise the content would get cut off at the...

In reference to this comment in the tailwind grid support pull request: https://github.com/tailwindcss/tailwindcss/pull/1274#issuecomment-568920481 I think autoprefixer should translate `gap` to `grid-gap`. Note that this should happen even if the grid...

I have this grid code: ```css .grid { display: grid; /* This is producing a warning in Autoprefixer. */ /* This code works perfectly in IE though. */ grid-gap: 30px;...

bug