Remove debugging statements

This commit is contained in:
Sarah Mei 2011-04-29 21:00:39 -07:00
parent 84ca9dfed6
commit 09ac4c789e
2 changed files with 0 additions and 3 deletions

View file

@ -152,7 +152,6 @@ var Stream = {
},
toggleComments: function(evt) {
console.log("toggling");
evt.preventDefault();
var $this = $(this),
text = $this.html(),

View file

@ -49,9 +49,7 @@ describe("Stream", function() {
});
it("toggles class hidden on the comment block", function () {
expect(jQuery('ul.comments')).toHaveClass("hidden");
console.log("AAAAAH");
$("a.show_post_comments").click();
console.log("done");
jasmine.Clock.tick(200);
expect(jQuery('ul.comments')).not.toHaveClass("hidden");
});