Code coverage report for js/main.js

Statements: 75% (3 / 4)      Branches: 100% (0 / 0)      Functions: 66.67% (2 / 3)      Lines: 75% (3 / 4)      Ignored: none     

All files » js/ » main.js
1 2 3 4 5 6 7 8 91 1 1            
(function () { (function($){
	$(function(){
		$('h1').click(function(){
			$('body').append('<div>added through jquery</div>');
		})
	});
})(jQuery);
}());