Skip to content

Instantly share code, notes, and snippets.

@esromneb
Created February 13, 2014 11:00
Show Gist options
  • Save esromneb/8973217 to your computer and use it in GitHub Desktop.
Save esromneb/8973217 to your computer and use it in GitHub Desktop.
Add this to your meteor project, and run it from the client. This will help you visualize your template re-renderings
redRenders = function () {
$('*').each(function(element){
$(this).css( "background-color", "red" );
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment