CJDennis

Results 16 issues of CJDennis

The results from Internet Explorer are nothing like the actual Accept-Language headers send. From http://validator.w3.org/i18n-checker/, I get "fr-FR, fr, en-AU, en, si, ru, he" but from the library I get...

If the user manually types an invalid value, `ng-invalid` should get set on the element, but it doesn't.

I've created a form control that allows the user to select the time zone on the fly. It works very nicely, automatically updating the display value in the picker control....

Is it possible to have a different `start-view` based on the value of the control? If there's no data I want it to start on `year`, but if it's already...

This is my control: ``` ``` I picked a date and time in March 2020 and the Moment object `hmrCtrl.extra.nextAppointment` got set as follows: ``` Moment {_isAMomentObject: true, _i: Mon...

I have a `` which contains my PIE-d elements. The div has the following style: ``` position: absolute; overflow-y: auto; top: 2.5em; bottom: 0px; left: 0px; ``` When I scroll...

The developers of Composer think that ANSICON interferes with its installation by returning an exit code of 1. https://github.com/composer/windows-setup/issues/74 I have no idea if this is the case or not,...

There is no option to escape/unescape characters to/from `\xC2` format in PHP. E.g. the character "À": ``` var_dump("\u{00C0}"==="À"); // bool(true) var_dump("\xC3\x80"==="À"); // bool(true) var_dump("\xC3\x80"==="\u{00C0}"); // bool(true) ``` It should be...

patch-welcome

### String Manipulation -> Escape/Unescape... -> Escape non ascii to Unicode A character such as EM DASH, U+2014 `"—"` should encode to `"\u{2014}"` in PHP, however, it incorrectly misses the...

enhancement
patch-welcome

Currently, spacebar has no functionality on long-press, as far as I can work out. When a user has a lot of different keyboards installed it can take a long time...