summaryrefslogtreecommitdiff
path: root/web-ui/app/js/foundation/off_canvas.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/foundation/off_canvas.js')
-rw-r--r--web-ui/app/js/foundation/off_canvas.js14
1 files changed, 13 insertions, 1 deletions
diff --git a/web-ui/app/js/foundation/off_canvas.js b/web-ui/app/js/foundation/off_canvas.js
index 8dfd75ba..80bbfd31 100644
--- a/web-ui/app/js/foundation/off_canvas.js
+++ b/web-ui/app/js/foundation/off_canvas.js
@@ -19,13 +19,25 @@ define(['flight/lib/component', 'page/events'], function (defineComponent, event
return defineComponent(function() {
- this.closeSlider = function (){
+ this.closeSlider = function (ev){
+ ev.preventDefault();
$('.exit-off-canvas').click();
};
+ this.toggleSlideContent = function (ev) {
+ ev.preventDefault();
+ $('.left-off-canvas-toggle').click();
+ if ($('#custom-tag-list').hasClass('expanded')) {
+ $('#custom-tag-list').removeClass('expanded');
+ } else {
+ $('#custom-tag-list').addClass('expanded');
+ }
+ }
+
this.after('initialize', function () {
this.on($('#middle-pane-container'), 'click', this.closeSlider);
this.on($('#right-pane'), 'click', this.closeSlider);
+ this.on($('.side-nav-toggle'), 'click', this.toggleSlideContent);
});
});
});