Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug : IE10/11 - images not centered - IE9 : Failed to load (configuration issue) - 1.0.3 #263

Closed
touchweb-vincent opened this issue Dec 5, 2015 · 1 comment

Comments

@touchweb-vincent
Copy link

Hello,

I found one visual effect issue on IE10 and IE 11, social button aren't align into their respective boxes. (it seems that a left align is apply)

And a major issue on IE9, with a javascript crash when loading this configuration :

var shareButton = new ShareButton({
ui: {
flyout: 'center bottom',
buttonText: 'PARTAGER'
},
networks: {
googlePlus: {enabled: true},
twitter: {enabled: true},
facebook: {enabled: true},
pinterest: {enabled: true},
reddit: {enabled: false},
linkedin: {enabled: false},
whatsapp: {enabled: false},
email: {enabled: true}
}
});

It forces me to turn off this great plugin on these browsers (with a dirty if (!$.browser.msie || !($.browser.msie && $.browser.version == '9.0'))).

Any idea ?

PS : here is a dirty trick to fix center problem on IE10/11 :

if($.browser.msie){
$('share-button .sb-social ul li').css('padding', '12px 16px');
$('share-button .sb-social ul li').css('width', '23px');
}

Best regards,

Vincent

@hhsnopek
Copy link
Contributor

Hey @vincent-guesnard, did you add this to #250?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants