mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-17 15:12:14 +11:00
13 lines
281 B
JavaScript
13 lines
281 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');
|
|
});
|
|
});
|