Daniel Ruf
Daniel Ruf
Hi @kzmi > for making the vertical scroll bar always visible. In general this is not a good approach. Normally it should not be possible to scroll the background when...
Hi @quinncomendant, Can you provide a small reproducible testcase eg on codepen? The options at https://github.com/amsul/pickadate.js/blob/master/lib/translations/it_IT.js seem to be ok at a first glance.
Well, unicode in regular expressions in JavaScript is a big problem. https://codepen.io/DanielRuf/pen/BgRwKb?editors=1010 See https://gist.github.com/DanielRuf/30fe0fd89223b16dd718adc159c3ab8e/revisions for the needed changes for at least some languages. See https://stackoverflow.com/a/22075070/753676 https://stackoverflow.com/a/150078/753676 is not the right...
https://github.com/mathiasbynens/regexpu https://mothereff.in/regexpu#input=var+regex+%3D+/%5Cp%7BL%7D/u%3B&unicodePropertyEscape=1 @amsul what do you think? Which solution should we use? Such regular expressions have probably a high impact on the performance.
An alternative solution would be to use the short version, see https://codepen.io/DanielRuf/pen/JQNOLV. Or use a `Date` object.
``` "giovedì".match(/[^\x00-\x7F]+|[a-zA-Z0-9_\u0080-\u00FF]+/ )[ 0 ] "giovedì" ``` But as others already mentioned in the threads, this may not cover all languages. So we should really test this to ensure that...
Keep in mind that this is a transpiled reular expression which supports all unicode characters / languages. See also https://esdiscuss.org/topic/inclusion-of-unicode-character-set-constants-in-regexp-p-l.
This makes not much sense.
Hi @developerrky, Can you list and describe the issues here directly?
Not sure why you need this info. This is an open source project so everyone is invited to contribute and this should be described in the public. The issues are...