Created
February 13, 2014 11:00
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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