Mark Drake
Mark Drake
Starting on line 84 you'll want to update to the aria-label to data-tooltip-content. `# Priority: highlights, allowed, hidden menu_button = soup.find('a', {'data-tooltip-content': 'Highlighted on Timeline'}) if menu_button is None: menu_button...
TypeScript: `4.8.4` Trying to run `./app.ts` results: `/node_modules/typescript/lib/typescript.js:43193`: ``` ts.Debug.assert(typeof typeReferenceDirectiveName === "string", "Non-string value passed to `ts.resolveTypeReferenceDirective`, likely by a wrapping package working with an outdated `resolveTypeReferenceDirectives` signature. This...
@LittleHendrix Did you have any luck with your integration?
I don't begin to understand how to customize the current theme into something original given a 8,754 line CSS file compiled from what looks like many different sources. Why isn't...
@glhays what is the likelihood of a PR that addresses the main theme? I would like to work with the team if possible to bring the default theme more up...
@AndreiMaz I see from time to time you've updated this issue regarding SASS. Would you be open to sharing more detail about the status of this ticket and if the...
I'd really like to see https://github.com/imagemin/imagemin/pull/225 merged soon. With one condition - for me I had to add the path.sep in the middle of the string concat. Then it worked...
[Here is a JSFiddle](https://jsfiddle.net/fmptLv7j/8/) using the `force-show` attribute and a `window.setTimeout`. You should be able to repeat easily for an Axios success callback.
[Taken from Modernizr](https://github.com/Modernizr/Modernizr/blob/5eea7e2a213edc9e83a47b6414d0250468d83471/feature-detects/dom/passiveeventlisteners.js): ``` var supportsPassiveOption = false; try { var opts = Object.defineProperty({}, 'passive', { get: function() { supportsPassiveOption = true; } }); window.addEventListener('test', null, opts); } catch (e)...
I started by hard coding the `passive: true` into place, and now I've paired it to use of `preventDefault`. You can see the 2 commits I've made already here: https://github.com/markadrake/zingtouch/tree/passive-event-listeners....