Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function($){
- $(document).ready(function() {
- jQuery(function ($) {
- 'use strict';
- // -------------------------------------------------------------
- // OffCanvas-menu
- // -------------------------------------------------------------
- (function () {
- // Menu settings
- $('#menuToggle, .menu-close').on('click', function () {
- $('#menuToggle').toggleClass('active');
- $('body').toggleClass('body-push-toleft');
- $('#theMenu').toggleClass('menu-open');
- });
- }());
- });
- })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement