mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 13:06:25 +10:00
22 lines
495 B
CoffeeScript
22 lines
495 B
CoffeeScript
//= require jquery
|
|
//= require jquery_ujs
|
|
|
|
$ ->
|
|
$('#authenticate').click ->
|
|
navigator.id.get (assertion) ->
|
|
if assertion
|
|
$.post '/home/verify', { assertion: assertion }, (data) ->
|
|
window.location = '/'
|
|
|
|
$('.quiz').click ->
|
|
if $(this).data('correct')
|
|
$(this).find('.highlight').removeClass('highlight').addClass('correct')
|
|
else
|
|
$(this).find('.highlight').removeClass('highlight').addClass('incorrect')
|
|
false
|
|
|
|
|
|
$('.fancybox').fancybox()
|
|
|
|
|