Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Issue #17 : Correct ESLint error by removing parameter .
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Kienstra committed Aug 24, 2016
1 parent 3a60aaa commit 6d4b74b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/customize-snapshots-admin.js
Expand Up @@ -53,11 +53,11 @@
this.showSettingAndChangeLinkText = function() {
$clickedLink.text( linkText[ 0 ] )
.data( dataSlug, linkActions[ 0 ] );
this.removeHiddenInputWithValue( settingId );
this.removeHiddenInputWithValue();
$settingDisplay.removeClass( 'cs-removed' );
};

this.removeHiddenInputWithValue = function( settingId ) {
this.removeHiddenInputWithValue = function() {
$( 'input[value="' + settingId + '"]' ).remove();
};

Expand Down

0 comments on commit 6d4b74b

Please sign in to comment.