cirandas.net

ref: master

plugins/solr/public/javascripts/solr.js


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
solr = {

  facets: {

    more_or_less: function (context, url) {
      context = $(context)
      var wrap = context.parents('.facet-menu-wrap')
      var menu = context.parents('.facet-menu')

      if (menu.hasClass('less') && wrap.find('.facet-menu.more').length == 0) {
        $.get(url, function(data) {
          wrap.append($(data).find('.facet-menu'))
          wrap.find('.facet-menu.less').hide()
        })
      } else {
        wrap.find('.facet-menu').toggle()
      }
    },
  },

}