XenForo
Administrative
- Thread starter
- Admin
- #1
I'm posting it on the general questions. 
I have the following javascript code, used for a plugin called heic2any (converts heic images to jpeg / its functionality is not interesting us for this problem).
On the testing board I run jQuery noConflict so this is the reason why it is written without $.
JavaScript:
Read more
Read more about this Feed . . .
I have the following javascript code, used for a plugin called heic2any (converts heic images to jpeg / its functionality is not interesting us for this problem).
On the testing board I run jQuery noConflict so this is the reason why it is written without $.
JavaScript:
Code:
function convertHeicToJpg(input)
{
let fileInputElement = jQuery(input)[0];
let container = new DataTransfer();
for (var i = 0; i <...
Read more
Read more about this Feed . . .