Wysihtml5 not working in Android mobile
tyganeshbabu opened this issue · 2 comments
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.
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 !