Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    The code is not necessarily to be included in the plugin, it works outside. it can be integrated into the plugin too. I will take care of doing this in the coming days, at the latest Friday. With a workaround for mobiles in order to detect the selection of text and a mistape text correction reminder.
    I would also provide the translation of the plugin in French and Italian.

    Hello,

    This is possible with, for example, a little javascript.
    With jQuery:

    jQuery(function() {
    	jQuery("#my-element").click(function(e) {
    	var report = decoMistape.getSelectionData();
    		if(report)
    		decoMistape.showDialog(report);
    		
    	});
    });

    Plain javascript

    document.getElementById('my-element').addEventListener( 'click', function(e) {
    var report = decoMistape.getSelectionData();
    	if(report)
    	decoMistape.showDialog(report);
    	
    });

    You could also with a simulated key press and using dispatchEvent.

    After you see the scenario to indicate to the user on mobile.

    • This reply was modified 4 years, 10 months ago by papayo.
    • This reply was modified 4 years, 10 months ago by papayo.

    Hello,
    I have a question about your next update.
    I use exif data, iso, location, device, and other information about my photos. When the watermark is applied, the image with watermark does not take the exif information from the original image. Can you tell me if you are considering this in the update?

    Cordially.

Viewing 3 replies - 1 through 3 (of 3 total)