JKnorr91 / ion-slide-box-tabs

An Add-On directive for the ion-slide-box, that adds tabs to the slide box, known from the Android Material Design specification
MIT License
248 stars 110 forks source link

can't select/highlight text inside content #8

Open parliament718 opened 9 years ago

parliament718 commented 9 years ago

Here' s a codepen with ion-slide-box-tabs and with content inside being the froala rich text editor.

http://codepen.io/parliament718/pen/ZGoKxG

If you highlight some of the text, you'll see the editor popup. This only work because I commented out the addEvents()

That is, these following lines cause the issue of being unable to highlight text

   ionic.onGesture("dragleft", scope.onSlideMove ,slider[0]);
   ionic.onGesture("dragright", scope.onSlideMove ,slider[0]);
   ionic.onGesture("release", scope.onSlideChange ,slider[0]);

How can we make these plugins "play nice" with each other?