mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9607 201d5d3c-b55e-5fd7-737f-ddc643e51545
17 lines
575 B
JavaScript
17 lines
575 B
JavaScript
jQuery(function($){
|
|
$('button.captchaPlay')
|
|
.click(function(){
|
|
var swf = document['captcha_audio'] || window['captcha_audio'];
|
|
var audio = current_url.setQuery('captcha_action','captchaAudio').setQuery('rand', (new Date).getTime());
|
|
|
|
if(swf.length > 1) swf = swf[0];
|
|
|
|
$('input[type=text]#secret_text').focus();
|
|
swf.setSoundTarget(audio,'1');
|
|
});
|
|
|
|
$('button.captchaReload')
|
|
.click(function(){
|
|
$("#captcha_image").attr("src", current_url.setQuery('captcha_action','captchaImage').setQuery('rand', (new Date).getTime()).setQuery('renew',1));
|
|
});
|
|
});
|