Created
October 26, 2011 19:41
-
-
Save sgreenfield/1317555 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(this).bind('mouseover focusin mouseleave blur', function(e){ | |
e.stopImmediatePropagation(); | |
}) | |
.attr('title','') | |
.tooltip({ | |
content: function(){ return IG.Tmpl.partials["schedules_quick_add"]; }, | |
position: { | |
my: 'left bottom', | |
at: 'left top', | |
of: $(this), | |
offset: '0 -6' | |
} | |
}).tooltip('open'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment