mirror of
https://github.com/newnius/YAO-portal.git
synced 2025-06-06 23:21:55 +00:00
7 lines
110 B
JavaScript
7 lines
110 B
JavaScript
|
$(function () {
|
||
|
$('#main-tabs a').click(function (e) {
|
||
|
e.preventDefault();
|
||
|
$(this).tab('show');
|
||
|
});
|
||
|
|
||
|
});
|