Open shubhamsinha92 opened 8 years ago
Hey,
For now, it's not possible (at least without using dirty hacks) but I'll try to include it the next release.
Sounds good. Any suggestions for the dirty hacks?
You can do something like this:
myApp.directive('vPaneHeader', function () {
return {
restrict: 'E',
priority: 1,
link: function (scope, iElement) {
iElement.off('keydown');
}
}
});
Hey,
I was wondering if there is any way I could disable the keyboard controls for the v-pane. Currently when I press the space key it expands or collapses the pane. I would like to disable this feature if that's possible.