Facebook Comments Plugin displays mobile width on iPad

As the name says. Here is the URL if you have an iPad. How to remove sensitive width of comment plugin for iPads? (bottom of page) http://dev.assessmentday.co.uk/aptitudetests_numerical.htm

+2
source share
1 answer

I also came across this. I worked on this by manually adding the attribute data-mobileset to falseif I found this on the iPad:

<script>
    if (navigator.userAgent.match(/\biPad\b/)) {
        document.querySelector('div.fb-comments')
            .setAttribute('data-mobile', 'false');
    }
</script>

, , Facebook "", . , , , , , .

+3

All Articles