Skip to content

Commit

Permalink
aw man, fix camelCase complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreben committed Mar 11, 2016
1 parent 43af918 commit 1f73ecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/toggle_show_tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ var toggleShowTabs = (function() {
showElement.show();
showElement.attr('aria-hidden', 'false');

var hide_elements = $(this).data('hide').split(' ');
$.each(hide_elements, function(index, attrib){
var hideElements = $(this).data('hide').split(' ');
$.each(hideElements, function(index, attrib){
$(attrib).hide();
$(attrib).attr('aria-hidden', 'true');
});
Expand Down

0 comments on commit 1f73ecf

Please sign in to comment.