Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function showComment(id, expcolid, show) {
- // ...
- }
- function showAddCommentForm(id, show) {
- (show) ? function () { showComment('sub' + id, 'expcolid' + id, true); } : function () { showComment('sub' + id, 'expcolid' + id, false); };
- }
- // anything wrong with the code in the second function??
Advertisement
Add Comment
Please, Sign In to add comment