I have the following few lines of code:
toggleMore  : function( $item, show ) {
    ( show ) ? $item.find('a.ca-more').show() : $item.find('a.ca-more').hide(); 
},
What do they mean? Also, how can I address this JSHint warning:
Expected an assignment or function call and instead saw an expression.
 
     
    