wysihtml5 icon indicating copy to clipboard operation
wysihtml5 copied to clipboard

Wysihtml5 not working in Android mobile

Open tyganeshbabu opened this issue 10 years ago • 2 comments

email I found that wysihtml5 editor is not compatible with Android mobiles. Should I add any other option for its working?

tyganeshbabu avatar Jan 27 '15 17:01 tyganeshbabu

There is a issue with Wysihtml5 min js they put mobile support code in wysihtml5-0.3.0.min.js. they check only some devices like ipad|iphone|ipod but not checked for android so we have to do some changes in there min js please change following code . step 1: find the text in above min js return b&&d&&e&&!a; step 2: Replace above text with below if condition if(!a){ return b && d && e && !a; }else{ return b && d && e && a; } Try this its work for me.

gyanesh2286 avatar Dec 14 '17 06:12 gyanesh2286

ere is a issue with Wysihtml5 min js they put mobile support code in wysihtml5-0.3.0.min.js. they check only some devices like ipad|iphone|ipod but not checked for android so we have to do some changes in there min js please change following code . step 1: find the text in above min js return b&&d&&e&&!a; step 2: Replace above text with below if condition if(!a){ return b && d && e && !a; }else{ return b && d && e && a; } Try this its work for me.

Thanks !

tuliodepadua avatar Oct 30 '18 16:10 tuliodepadua