/** * @requires $ jQuery */ (function (/* Object */ ns) { 'use strict'; ns.Controller = function () {return this.construct.apply(this, arguments)}; var fn = ns.Controller.prototype; fn.construct = function () { var selector = $('div.site_map_div'); selector.mouseover(function(){ $('>span.addlinks', this).addClass('addlinks_active'); }); selector.mouseout(function(){ $('>span.addlinks', this).removeClass('addlinks_active'); }); }; })(qs.defineNS('app.cms'));