diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2010-06-22 00:43:32 -0400 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2010-06-22 00:43:32 -0400 |
| commit | 194c6121a301c2a85cb1e380a82ad745701e2eb9 (patch) | |
| tree | 4b3e3b0c4d7df976c2c13b102143afc2659882ea /static/js | |
| parent | d9bf4e9e0580a92c408d24c324a62b8ba6f32f4f (diff) | |
Fix click for youtube thumbs
Diffstat (limited to 'static/js')
| -rw-r--r-- | static/js/pichat.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js index 5a7f956..da475f0 100644 --- a/static/js/pichat.js +++ b/static/js/pichat.js @@ -1071,7 +1071,7 @@ function initChatMsgs() { $('.content').live('click', function(e) { var tagName = e.target.tagName; - if (tagName == 'A') { + if (tagName == 'A' || $(e.target).hasClass('youtube-thumb')) { return true; } var msg = $(this).parent('.msgDiv'); |
