Giter VIP home page Giter VIP logo

Comments (6)

josdejong avatar josdejong commented on August 24, 2024

how can I repeat this? I opened one of the Timeline examples in Firefox, resized the browser window small enough to have the page scrollbar visible, and then zoom in the timeline - but that does not zoom the page.

from chap-links-library.

josdejong avatar josdejong commented on August 24, 2024

No response yet, so I will close the issue for now.

I checked the code, and the onMouseWheel method actually cancels the default behavior of the event (so the browser will not scroll the page). It does not stop propagation of the event though.

from chap-links-library.

sAmvdP avatar sAmvdP commented on August 24, 2024

Sorry for the late response. I figured out how to reproduce the issue now (only seems to happen with Groups):
-Go to example 13: http://almende.github.com/chap-links-library/js/timeline/examples/example13_grouping.html
-Resize the browser window until there's a vertical scrollbar
-Scroll mousewheel inside chart
-Sometimes, the document scrolling only happens are the mousewheel has been used outside the chart area at least once.

These steps reproduced the issue for me in Firefox 14.0.1. In any case, thank you very much for the awesome work you and your group have done so far on the library!

from chap-links-library.

josdejong avatar josdejong commented on August 24, 2024

Ah, thanks for your feedback. I get it reproduced now, on Firefox and on Windows.

from chap-links-library.

weisjohn avatar weisjohn commented on August 24, 2024

I found an easy way to fix this. Using https://developer.mozilla.org/en-US/docs/Web/Reference/Events/wheel , I learned that the MozMousePixelScroll event will get fired.

So the work around I did was

In my code:

$(".timeline-content").get(0).addEventListener("MozMousePixelScroll", function(e) {
    e.preventDefault();
}, true);

from chap-links-library.

josdejong avatar josdejong commented on August 24, 2024

Thanks for sharing.

from chap-links-library.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.