8 lines
161 B
CoffeeScript
8 lines
161 B
CoffeeScript
|
$ ->
|
||
|
$(".auth a").bind "mouseup", (e) ->
|
||
|
e.preventDefault()
|
||
|
if BeatHaven.authenticated
|
||
|
alert("auth ok!!!!!")
|
||
|
else
|
||
|
BeatHaven.VK.popup()
|