Skip to content

Commit

Permalink
Use jQuery instead of $ at root level.
Browse files Browse the repository at this point in the history
  • Loading branch information
dantman committed Jan 10, 2011
1 parent 848aeea commit 6c9fd6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions style/js/monaco.js
Expand Up @@ -4,15 +4,15 @@
* @license Dual-licensed MIT / GPL2+
*/

$('.hovermenu *')
jQuery('.hovermenu *')
.live("blur", function(e) {
$(this).closest('.hovermenu').removeClass('open');
})
.live("focus", function(e) {
$(this).closest('.hovermenu').addClass('open');
});

$(".hover-navigation *")
jQuery(".hover-navigation *")
.live("blur", function(e) {
$(this).closest(".hover-navigation").find('.menu-item.with-sub-menu.open').removeClass('open');
})
Expand Down

0 comments on commit 6c9fd6f

Please sign in to comment.