Created
April 26, 2016 13:42
-
-
Save rionmonster/745bd50a900c541f0e83d0df0c223cd5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#customFields").on('click','.remCF',function(){ | |
// Push back the reference since one was removed | |
var previousIndex = possibleLetters.indexOf(currentLetter) - 1; | |
currentLetter = possibleLetters[previousIndex]; | |
$(this).parent().parent().remove(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment