Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed minify bug.
  • Loading branch information
Elliot Lings committed Dec 29, 2012
1 parent 79bf384 commit 5190e8c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions js/jquery.lingsTooltip.js
Expand Up @@ -220,8 +220,8 @@
});
}

if(options.wrap) $(ele).wrap('<div />').append(options.tooltip);
else $('body').append(options.tooltip);
if(options.wrap){ $(ele).wrap('<div />').append(options.tooltip); }
else { $('body').append(options.tooltip); }

methods.position();

Expand Down
11 changes: 10 additions & 1 deletion js/jquery.lingsTooltip.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5190e8c

Please sign in to comment.