Elizabeth M Smith

Results 10 comments of Elizabeth M Smith

I've managed to port the tooltips code for bootstrap 4 - it's a pretty simple fix The current version is failing because it's checking for a fixTitle method that no...

This bug is definitely related to whitespace and quotation marks in settings entries https://github.com/axodox/AxoCover/blob/master/AxoCover/Models/Testing/Execution/OpenCoverProcessInfo.cs#L84 This appears to be causing issues when sending args to opencover console.exe https://github.com/opencover/opencover/wiki/Usage I haven't dug...

3.x does this as well - the issue is with naive quoting on the AS statement - see https://github.com/auraphp/Aura.SqlQuery/blob/3.x/src/Common/Quoter.php#L88 I'm doing a getStatement and regexing the fix out of the...

These functions are deprecated in OpenCV 2.x - I'd have to look at the code to be certain but it looks like you'll need to use an older version of...

Well at least I'm not crazy :) Is there an 8.2 checklist issue open yet like there was for 8.1? Definitely have to change the tokenizing, probably similarly to what...

``` //phpcs:disable PSR12.Operators.OperatorSpacing //phpcs:disable PSR12.Functions.ReturnTypeDeclaration.SpaceBeforeReturnType ``` disables for anyone who finds this ticket and needs them @jrfnl I'm going to retitle this ticket to make it easier to find

I think you're misunderstanding "not having jquery" is not the problem or "not having it bundled" is also not the problem This is a Loading issue with ES6 style javascript...

I don't know if you can or not - import has to be top level and it can only be in module files https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import Maybe import() would work instead? Would...

1. ```(undefined === $)``` won't work you have to do ```('undefined' === typeof $)``` 2. You can't use import statically anywhere but the top of a file. You'd have to...

I'm still using the hack of adding the line in the bundled js (I maintain a fork with the fix... and some other stuff ... ugh) use asset mapper to...