Browse Source

Fix jshint errors in search

pull/2477/head
Jack Lukic 9 years ago
parent
commit
8278323cad
1 changed files with 2 additions and 2 deletions
  1. 4
      src/definitions/modules/search.js

4
src/definitions/modules/search.js

@ -373,9 +373,9 @@ $.fn.search = function(parameters) {
;
},
type: function(type) {
type || settings.type;
type = type || settings.type;
if(settings.type == 'category') {
$module.addClass(settings.type)
$module.addClass(settings.type);
}
},
buttonPressed: function() {

Loading…
Cancel
Save