simple-header.js 265 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 var $ = require('yoho.jquery'); if ($('.simple-header').size() > 0) { $('.tool-options').on('mouseenter', function() { $(this).find('.tool-select').fadeIn(); }).on('mouseleave', function() { $(this).find('.tool-select').fadeOut(); }); }