Skip to content

Commit

Permalink
IE fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jaz303 committed May 3, 2010
1 parent 0989b72 commit c0ef618
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/javascripts/jquery.tipsy.js
Expand Up @@ -90,9 +90,9 @@

tip: function() {
if (!this.$tip) {
this.$tip = $('<div class="tipsy"><div class="tipsy-arrow"></div><div class="tipsy-inner"/></div></div>').css({
position: 'absolute',
zIndex: 100000
this.$tip = $('<div class="tipsy">')
.html('<div class="tipsy-arrow"></div><div class="tipsy-inner"/></div>')
.css({position: 'absolute', zIndex: 100000
});
}
return this.$tip;
Expand Down

0 comments on commit c0ef618

Please sign in to comment.