Skip to content

Commit

Permalink
allowed html in popovers since we're escaping their input once already.
Browse files Browse the repository at this point in the history
Closes #27
  • Loading branch information
Jason Teplitz authored and Jason Teplitz committed Jan 23, 2013
1 parent 28288fd commit d4349ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/javascripts/week.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ $(document).ready(function(){
currentEventLoc = [eventDate.day , block, -1];
});
// event popovers
$(".event").popover({html: false, trigger: "hover"});
$(".event").popover({html: true, trigger: "hover"});

$(".eventCheck").click(checkboxClicked);

Expand Down

0 comments on commit d4349ce

Please sign in to comment.