mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-17 23:22:14 +11:00
17 lines
367 B
JavaScript
17 lines
367 B
JavaScript
$(document).ready(function(){
|
|
$("#transactions a").click(function(e){
|
|
e.preventDefault();
|
|
$(this).tab('show');
|
|
});
|
|
});
|
|
|
|
$(document).ready(function(){
|
|
$("#market a").click(function(e){
|
|
e.preventDefault();
|
|
$(this).tab('show');
|
|
});
|
|
});
|
|
|
|
function onSubmit(token) {
|
|
document.getElementById("captchaenabled").submit();
|
|
}
|