Skip to content

Instantly share code, notes, and snippets.

@MikeMcChillin
Created April 8, 2013 17:17
Show Gist options
  • Save MikeMcChillin/5338560 to your computer and use it in GitHub Desktop.
Save MikeMcChillin/5338560 to your computer and use it in GitHub Desktop.
Prevents widows in headlines.
#######################################
## Prevent widows on headlines!
#######################################
widowSelector = $('header h2')
widowSelector.each ->
wordArray = $(this).text().split(" ")
finalTitle = ""
i = 0
while i <= wordArray.length - 1
finalTitle += wordArray[i]
if i is (wordArray.length - 2)
finalTitle += "&nbsp;"
else
finalTitle += " "
i++
$(this).html finalTitle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment