RenatoSousa89 / google-ajax-apis

Automatically exported from code.google.com/p/google-ajax-apis
0 stars 0 forks source link

Resposive IE8 and lower #632

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I've change one condition in screenSize function that help me to have the same 
render in IE8 and lower: 

Old : var w = window.outerWidth || html.clientWidth;
New : var w = window.outerWidth || html.offsetWidth;

Original issue reported on code.google.com by mathieu....@gmail.com on 3 Jul 2012 at 8:34