# HG changeset patch # User Katia Saurfelt # Date 1246295228 -7200 # Node ID b40131032ff1171fe5ee0428777ebbf35d3ee0ba # Parent 1dd3dfc6fd763229f9f162c1298c396bdbe0697e make js, css class variables diff -r 1dd3dfc6fd76 -r b40131032ff1 web/views/facets.py --- a/web/views/facets.py Tue Jun 23 20:04:15 2009 +0200 +++ b/web/views/facets.py Mon Jun 29 19:07:08 2009 +0200 @@ -37,7 +37,9 @@ visible = True # functionality provided by the search box by default order = 1 roundcorners = True - + css_facets = 'cubicweb.facets.css' + js = ('cubicweb.ajax.js', 'cubicweb.formfilter.js') + def facetargs(self): """this method returns the list of extra arguments that should be used by the facet @@ -56,8 +58,8 @@ def call(self, view=None): req = self.req - req.add_js( ('cubicweb.ajax.js', 'cubicweb.formfilter.js') ) - req.add_css('cubicweb.facets.css') + req.add_js( self.js ) + req.add_css( self.css_facets) if self.roundcorners: req.html_headers.add_onload('jQuery(".facet").corner("tl br 10px");') rset, vid, divid, paginate = self._get_context(view)