123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- ;(function ($, window, document, undefined) {
- 'use strict';
- Foundation.libs.offcanvas = {
- name : 'offcanvas',
- version : '5.2.2',
- settings : {},
- init : function (scope, method, options) {
- this.events();
- },
- events : function () {
- var self = this,
- S = self.S;
- S(this.scope).off('.offcanvas')
- .on('click.fndtn.offcanvas', '.left-off-canvas-toggle', function (e) {
- self.click_toggle_class(e, 'move-right');
- })
- .on('click.fndtn.offcanvas', '.left-off-canvas-menu a', function (e) {
- S(".off-canvas-wrap").removeClass("move-right");
- })
- .on('click.fndtn.offcanvas', '.right-off-canvas-toggle', function (e) {
- self.click_toggle_class(e, 'move-left');
- })
- .on('click.fndtn.offcanvas', '.right-off-canvas-menu a', function (e) {
- S(".off-canvas-wrap").removeClass("move-left");
- })
- .on('click.fndtn.offcanvas', '.exit-off-canvas', function (e) {
- self.click_remove_class(e, 'move-left');
- self.click_remove_class(e, 'move-right');
- })
- },
- click_toggle_class: function(e, class_name) {
- e.preventDefault();
- this.S(e.target).closest('.off-canvas-wrap').toggleClass(class_name);
- },
- click_remove_class: function(e, class_name) {
- e.preventDefault();
- this.S('.off-canvas-wrap').removeClass(class_name);
- },
- reflow : function () {}
- };
- }(jQuery, this, this.document));
|