bknill

Results 25 comments of bknill

I got round it with this ``` setAttributeFamily(el,'click-drag',true) function setAttributeFamily(el,attribute,value){ el.setAttribute(attribute,value) const children = [].slice.call(el.children) children.forEach((child)=> child.setAttribute(attribute, value)) if(el.parentNode.classList.contains('hotspot')) el.parentNode.setAttribute(attribute, value) } ```

We are having exactly same problem with a CRA built with react-app-rewired. Something to do with the uglify version apparently.

I'm struggling on Android when using logo as well. It works fine with background image, but I can't get it to work on Android with the logo.

hpurmann did you ever find a solution to the above problem?

Ha. Thanks! I managed to fix it by adding the jquery address import to the head of the html document, where previously I was importing it later on in the...

Did you figure out how to get this working?

Did you ever get an answer to this magic? I'm trying to do the same thing.. however without the annoying Google UI popping up.

Carousel is at the top ``` ``` The carousel element in the controller ``` $scope.$watch(function() { return Entities.locations }, function() { updateCarousel() }, true); activateCarousel(); function activateCarousel() { $scope.carouselData =...

Hmm thanks doesn't seem to have made a difference. This function updateCarousel() is being called every time the data changes but the changes aren't making it to the template. Is...