Dereck Bridie

Results 9 issues of Dereck Bridie

@RGregat > I'm using a Pixel 6 Pro and here is the Log > Build Fingerprint: `google/raven/raven:12/SP2A.220405.004/8233519:user/release-keys` Crash log ``` 2022-04-26 14:25:23.063 23353-23353/? A/DEBUG: *** *** *** *** *** ***...

bug

See [Android doc on Behavior Changes in Android 12](https://developer.android.com/about/versions/12/behavior-changes-12#exported). A value for `android:exported` is required when targeting Android 12; true is required for the `LAUNCHER` category.

cla: yes

### SPECIFIC ISSUE ENCOUNTERED After updating to ARCore SDK version 1.33 or later, you may encounter that Cloud Anchors no longer can be hosted or localized. This is due to...

[The transformation list on You Don't Need jQuery](https://github.com/nefe/You-Dont-Need-jQuery/blob/master/README.md) will be used as a milestone indicator. - [x] [1.0 Query by selector](https://github.com/nefe/You-Dont-Need-jQuery#1.0) - [x] [1.1 Query by class](https://github.com/nefe/You-Dont-Need-jQuery#1.1) - [x] [1.2...

help wanted
plugin

When transforming `$("a").hide().hide().hide().hide()`, extra newlines will be inserted between each output statement, resulting in the following: ``` const element = document.querySelectorAll("a"); element.style.display = "none"; element.style.display = "none"; ... ``` As...

bug
engine

For functions that cause mutations, the current approach of translating `$("a").hide()` to `document.querySelectorAll("a").forEach(e => e.style.display = "none");` is possible, but functions that return values will not be transformed as expected....

bug
engine

Since the documentation is used exclusively in [unjquerify-frontend](https://github.com/devbridie/unjquerify-frontend) and not here, the documentation, references, and samples should be moved from here to there.

documentation

Example: ```javascript const x = $("a.nav-link"); x.hide(); x.show(); ``` For simple assignments, the engine should be able to follow references to statically determine if an element is a jQuery where...

enhancement

Example: [DocumentReadyPlugin](https://unjquerify.com/documentation/plugin/DocumentReadyPlugin). The example `$(document).ready(e)` does not transform due to [a `isFunctionExpression` check on the first argument](https://github.com/devbridie/unjquerify/blob/74e4e932d50fe8021d4b6a999327d6767be0dd98/src/plugins/events/document-loading/document.ready.plugin.ts#L47). Whether or not this check should be done at all is one thing,...

documentation