1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
;(function ($, window, document, undefined) {
'use strict';
Foundation.libs.offcanvas = {
name : 'offcanvas',
version : '5.0.0',
settings : {},
init : function (scope, method, options) {
this.events();
},
events : function () {
$(this.scope).off('.offcanvas')
.on('click.fndtn.offcanvas', '.left-off-canvas-toggle', function (e) {
e.preventDefault();
$(this).closest('.off-canvas-wrap').toggleClass('move-right');
})
.on('click.fndtn.offcanvas', '.exit-off-canvas', function (e) {
e.preventDefault();
$(".off-canvas-wrap").removeClass("move-right");
})
.on('click.fndtn.offcanvas', '.right-off-canvas-toggle', function (e) {
e.preventDefault();
$(this).closest(".off-canvas-wrap").toggleClass("move-left");
})
.on('click.fndtn.offcanvas', '.exit-off-canvas', function (e) {
e.preventDefault();
$(".off-canvas-wrap").removeClass("move-left");
});
},
reflow : function () {}
};
}(jQuery, this, this.document));
|