mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 10:28:05 +01:00
12 lines
312 B
JavaScript
12 lines
312 B
JavaScript
|
$(function(){
|
||
|
$(".toggle-baseline").click(function () {
|
||
|
$("html").toggleClass("toolkit-baseline");
|
||
|
});
|
||
|
$(".toggle-grid").click(function () {
|
||
|
$(".container").toggleClass("toolkit-grid");
|
||
|
});
|
||
|
$(".url-responsive").click(function () {
|
||
|
window.location = "/styleguide/responsive-test";
|
||
|
});
|
||
|
});
|