Skip to content

Commit

Permalink
Merge pull request unl#924 from mfairchild365/js-fix
Browse files Browse the repository at this point in the history
Add a missing bracket
  • Loading branch information
kabel committed Dec 14, 2015
2 parents b08d06f + a8ae6e6 commit cff1e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wdn/templates_4.1/scripts/wdn-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ define(['jquery'], function($) {
$container.attr('aria-hidden', true);

//Add a helper class to labels
var $label = $('label[for="'+$element.attr('id')+'"');
var $label = $('label[for="'+$element.attr('id')+'"]');
$label.addClass('wdn-dropdown-widget-label');
});

Expand Down

0 comments on commit cff1e7e

Please sign in to comment.