Skip to content
This repository has been archived by the owner on Nov 6, 2019. It is now read-only.

Commit

Permalink
Terminate unterminated statements
Browse files Browse the repository at this point in the history
  • Loading branch information
iandunn committed Mar 12, 2014
1 parent b220ebb commit 65930c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions camptix.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Hopefully runs during wp_footer.
*/
(function($){
var tix = $( '#tix' )
var tix = $( '#tix' );
$( tix ).addClass( 'tix-js' );

if ( $( tix ).hasClass( 'tix-has-dynamic-receipts' ) ) {
Expand Down Expand Up @@ -39,7 +39,7 @@
previously_checked = $('[name="tix_receipt_email_js"]:checked').val();
if ( previously_checked == undefined || previously_checked.length < 1 )
$('#tix-receipt-emails-list input:first').attr('checked','checked');
}
};

$('.tix-field-email').change(refresh_receipt_emails);
$('.tix-field-email').keyup(refresh_receipt_emails);
Expand Down

0 comments on commit 65930c7

Please sign in to comment.