MSCAU

Results 19 comments of MSCAU

Yes, I need Indian currency formatting and will need to roll my own solution...

You can turn off the overflow, run DomToImage, then turn it back on again. If that's too distracting to the user, append a clone of your chosen DIV with overflow:...

In the past I have quickly appended a full size (1920 x 1080) image below the fold (ie. below the visible area of the screen) using something like this: ```...

@yogeshbansal I suggest you create a Codepen page with all this and we can then see where the problem lies.

> image.crossOrigin = 'use-credentials'; @iqdoq-dfischer - I have added the line that you have proposed: ``` function makeImage(uri) { return new Promise(function (resolve, reject) { var image = new Image();...

You need to go to the Google URL in your browser, and copy the CSS that it returns into a local CSS file. See it in action on https://beatjosh.com/budgets/FY2019/CTH

What is the error and what are the color problems?

I gather it will be fixed in Chrome 101, which is due in April: https://chromestatus.com/features/schedule Not surprisingly, it also affects Edge 99, BTW. Firefox and Safari seem to work fine.

Thanks, Peter. I'll need to look into it in a few days as I don't have time now. I think you're right about Rails being the responsible party, though. Good...

I just had this issue too. It was a syntax error in my JS which wasn't apparent locally: ` try { // Do something here } catch(err) { // Handle...