You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I am using your range slider with ion nav menu left drawer. while swiping on the slider the drawer menu also opens can you gimme a work around for this?
I came across this as a suggestion in the internet about a directive as below
.directive('ion-range', function() {
return {
restrict: 'C',
link: function (scope, element, attr) {
element.bind('touchstart mousedown', function(event) {
event.stopPropagation();
event.stopImmediatePropagation();
});
}
};
})
this is not working, can some one come up with something else.
The text was updated successfully, but these errors were encountered:
Alternatively I think there is a way to temporarily disable the ion menu. So you could disable it on touchstart (within the range slider) and re-enable it on touchend (anywhere)
Hi I am using your range slider with ion nav menu left drawer. while swiping on the slider the drawer menu also opens can you gimme a work around for this?
I came across this as a suggestion in the internet about a directive as below
.directive('ion-range', function() {
return {
restrict: 'C',
link: function (scope, element, attr) {
element.bind('touchstart mousedown', function(event) {
event.stopPropagation();
event.stopImmediatePropagation();
});
}
};
})
this is not working, can some one come up with something else.
The text was updated successfully, but these errors were encountered: