Global Disable Magnifying Glass on iOS 9 in Meteor Cordova App

global disable magnifying glass on iOS 9 in meteor cordova app

The plugin Frederik mentioned is now build into cordova see https://github.com/apache/cordova-ios/pull/174

To enable the fix insert <preference name="SuppressesLongPressGesture" value="true" /> into config.xml

IOs Cordova long-press shows text-select magnifying glass even with text-selection disabled, how to remove?

Thank you for that Automatico! Saved me from a lot more frustration.

Since then however it looks like that code has been merged into mainline cordova and can just be enabled by adding

<preference name="SuppressesLongPressGesture" value="true" /> to config.xml

That worked perfectly for me!

Here is the commit and notes that brought it in

https://github.com/apache/cordova-ios/commit/1ad9951c80dbf97281e763f5f27a9bc8852c0537

I am writting a mysql query. Help me out

How about

SELECT * FROM yourTable WHERE user = "sam" OR status = 0;

?



Related Topics



Leave a reply



Submit