Michał Gołębiowski-Owczarek
Michał Gołębiowski-Owczarek
Migrate warns against `.removeAttr()` called on boolean attributes as this used to set the associated property to `false` but it doesn't do so anymore since jQuery 3.0.0. However, this is...
It got deprecated in jQuery 3.3.0: * https://api.jquery.com/jQuery.proxy/ * https://blog.jquery.com/2018/01/19/jquery-3-3-0-a-fragrant-bouquet-of-deprecations-and-is-that-a-new-feature/
We should verify that Migrate meant to aid migration from jQuery n-1 to n passes as much as possible from the jQuery n-1 test suite. One idea is to commit...
We should get to the point where `npm run build` installs & builds the project & `npm test` builds & tests it (including running linters) like in Core. In particular,...
I find it useful to be able to quickly invoke various Lodash methods while I read about them on https://lodash.com/docs/. Because the library is loaded on that website, I can...
The address no longer belongs to this project and I've got a spammy "install this extension" popup. It might be malicious.
Part of my Grunt config: ``` js grunt.initConfig({ defs: { options: { defsConfigURL: 'defs-config.json', }, all: { files: [ { expand: true, extDot: 'last', ext: '.defs.js', src: [ /* app...
The DOM-based error overlay is a nice feature but sometimes I need to fire up code with linting errors just for a moment and the overlay blocks access to the...
GitHub's Markdown parser doesn't seem to parse backticks-contained text even when put inside of HTML; the following Markdown: ``` Some content `` More content - invisible. ``` will render just...
### Summary ### `module` is needed for Parcel which still doesn't support `exports`: https://github.com/parcel-bundler/parcel/issues/4155 I prepared this after reading https://nodejs.org/api/packages.html and https://webpack.js.org/guides/package-exports/. Important information is: * jQuery can be loaded...