Fix for web pages that don't have console.log(). Typo in Easter Egg.

This commit is contained in:
Ken Elf Mathieu Sternberg 2012-07-23 12:19:36 -07:00
parent bf2aef38b8
commit adabf7184e
1 changed files with 1 additions and 2 deletions

View File

@ -65,10 +65,9 @@ require ['jquery', 'lawnchair'], ($) ->
input.focus()
easter: ->
force_re = new RegExp('(Force|Empire|Vader|Darth|Sith|Jedi|rebel)')
force_re = new RegExp('(Force|Empire|Vader|Darth|Sith|Jedi|Rebel)')
force = (1 for p in @priorities when force_re.test(p.name))
if force.length > 0
console.log("Aroo?")
$('#prioritize').css('background-image', 'url(rebel.png)')
$('#ignorize').css('background-image', 'url(imperial.png)')
else