ktsn/vue-range-slider

Not reacting in production

Closed this issue · 1 comments

Hi,

using this in my local env works.
but as soon as i put it to my clients website it stops working.

so something overwrites the events?
what could cause this?
how would you debug this?

thanks.

an old jquery plugin stops propagation of mousedown. (selectbox)

			$("html").on('mousedown', function(e) {
				// e.stopPropagation();
				$("select").selectbox('close');
			});