Skip to content
Snippets Groups Projects
Commit 80b01d11 authored by Jared Hancock's avatar Jared Hancock
Browse files

oops: Fix help tips in installer

parent f16682d1
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ jQuery(function($) {
.each(function(i, e) {
e.rel = 'tip-' + i;
})
.live('mouseover click', function(e) {
.on('mouseover click', function(e) {
e.preventDefault();
var elem = $(this),
......@@ -51,7 +51,7 @@ jQuery(function($) {
}
}, 500);
elem.live('mouseout', function() {
elem.on('mouseout', function() {
clearTimeout(tip_timer);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment