Skip to content

Instantly share code, notes, and snippets.

@mkempe
Last active October 13, 2015 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkempe/4135568 to your computer and use it in GitHub Desktop.
Save mkempe/4135568 to your computer and use it in GitHub Desktop.
Vaading monkey patching at its best.
$('.v-app').livequery(function() {
$(this).resize(function(e) {
if ($.browser.msie && parseInt($.browser.version, 10) <= 8) {
vaadin.forceLayout();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment