Guest User

Untitled

a guest
May 15th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function showComment(id, expcolid, show) {
  2.     // ...
  3. }
  4.  
  5. function showAddCommentForm(id, show) {
  6.     (show) ? function () { showComment('sub' + id, 'expcolid' + id, true); } : function () { showComment('sub' + id, 'expcolid' + id, false); };
  7. }
  8.  
  9. // anything wrong with the code in the second function??
Advertisement
Add Comment
Please, Sign In to add comment