Eonasdan

Results 100 comments of Eonasdan

I resolved the PRI DLL issue by modifying the targets file like this `%userprofile%\.nuget\packages\microsoft.windowsappsdk\1.5.240311000\buildTransitive\MrtCore.PriGen.targets` ```xml C:\Program Files\Microsoft Visual Studio\2022\Preview\MSBuild\Microsoft\VisualStudio\v17.0\AppxPackage\ ``` For me, the DLL was located in this folder, not...

In other versions, this has been a bit of a back and forth with users. In some cases, people want it to behave as you have suggested, in other cases...

If you set the input value to multiple dates. It should pick those up. Otherwise, if you want a programmatic way to set multiple values, [this](https://github.com/Eonasdan/tempus-dominus/blob/master/src/js/tempus-dominus.ts#L529C1-L542C8) is how the picker...

I have plans to do this but TZ are hard to deal with but it is on the roadmap.

This is done in 6.9.4 ![image](https://github.com/Eonasdan/tempus-dominus/assets/1006516/f45f36bd-7a46-4eab-971f-8328bc590d64)

there's this: https://github.com/Eonasdan/MomentSharp/blob/a2b632d8b78ce0886513068369b109a2f5b6fcf5/MomentSharp/Globalization/Languages/EnUs.cs#L15

It's been 6 years since I wrote this and I'm surprised people are actually using it lol. I'm looking at the code again and I think the reason I didn't...

Yeah if I had time, I'd rewrite it to use .net 5 and probably provide extensions to DateTime instead of creating a new object. I'm currently putting in a lot...

Hi. Please add your translation to [here](https://github.com/Eonasdan/MomentSharp/blob/master/MomentSharp/Globalization/LanguageExtensions.cs#L19)

hope this helps someone. If you're using the svg icons you can do something like this: ``` var svgElements = document.body.querySelectorAll('svg.svg-inline--fa''); svgElements.forEach(function(item) { item.setAttribute("width", item.getBoundingClientRect().width); item.setAttribute("height", item.getBoundingClientRect().height); item.style.width = null;...