Skip to content

Commit

Permalink
fix jslint-warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer committed Mar 3, 2014
1 parent 3571d53 commit d1baf62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eea/facetednavigation/widgets/checkbox/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ Faceted.CheckboxesWidget.prototype = {

var span = jQuery('span', li);
if(!span.length){
var label = jQuery('label', li)
var label = jQuery('label', li);
label.append(' ');
label.append(jQuery('<span>'));
span = jQuery('span', li);
Expand Down
2 changes: 1 addition & 1 deletion eea/facetednavigation/widgets/radio/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Faceted.RadioWidget.prototype = {

var span = jQuery('span', li);
if(!span.length){
var label = jQuery('label', li)
var label = jQuery('label', li);
label.append(' ');
label.append(jQuery('<span>'));
span = jQuery('span', li);
Expand Down

0 comments on commit d1baf62

Please sign in to comment.