mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
|
$( document ).ready(function() {
|
||
|
$(".icon-reorder").click(function () {
|
||
|
$(".wy-nav-content-wrap").toggleClass("shift");
|
||
|
$(".wy-nav-side").toggleClass("shift");
|
||
|
});
|
||
|
});
|