Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1522 from johngian/hide-tooltip
Browse files Browse the repository at this point in the history
Disable jquery-ui tooltip on recaptcha iframe.
  • Loading branch information
johngian committed Sep 26, 2016
2 parents 3af9ebe + de926e9 commit d97bc3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mozillians/static/mozillians/js/profile_edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ $(function() {
});

// Show tooltip on hover on desktops and on click on touch devices.
$(document).tooltip();
// Disable tooltip on recaptcha iframe
$(document).not('.g-recaptcha iframe').tooltip();
$('#skills').on('DOMNodeInserted', 'li', function() {
$('.select2-selection__choice').each(function(index, elem){
$(this).attr('title', '');
Expand Down

0 comments on commit d97bc3e

Please sign in to comment.