1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-29 11:17:52 +01:00

Merge pull request #186 from arnaudroulee/master

Fix IE resize
This commit is contained in:
Barry vd. Heuvel 2014-12-17 09:39:39 +01:00
commit 4971283c1f

View File

@ -414,6 +414,8 @@ if (typeof(PhpDebugBar) == 'undefined') {
* @this {DebugBar}
*/
registerResizeHandler: function() {
if (typeof this.resize.bind == 'undefined') return;
var f = this.resize.bind(this);
this.respCSSSize = 0;
$(window).resize(f);