papayo
Forum Replies Created
-
Forum: Plugins
In reply to: [Mistape] Mobile friendly – suggestionHello,
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.Forum: Plugins
In reply to: [Mistape] Mobile friendly – suggestionHello,
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.
Forum: Plugins
In reply to: [Easy Watermark] The plugin is not workingHello,
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.