Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for clicking on the next/prev month button hides calendar #497

Merged
merged 11 commits into from
Mar 21, 2012

Commits on Mar 14, 2011

  1. Fix for clicking on the next/prev month when it's been disabled via v…

    …isibility: hidden closes the calendar - target is the root node instead of the button.
    brewt committed Mar 14, 2011
    Configuration menu
    Copy the full SHA
    28b63c5 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2011

  1. Handling one or zero items with circular

    Having one item with circular set to true resulted in a single item
    cloned and scrolling, which is not a desirable condition. Having
    zero items with circular set to true resulted in an error. By
    enforcing a check more similar to the one performed when circular
    is false, we are able to catch this condition.
    
    Additionally, the prev and next buttons are set to disabled in the
    case of one or zero items.
    Jesse Allen committed May 31, 2011
    Configuration menu
    Copy the full SHA
    9abf5af View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2011

  1. Merge pull request jquerytools#412 from jessecarl/master

    Scrollable with one or zero items (and particularly with circular true)
    bradrobertson committed Aug 24, 2011
    Configuration menu
    Copy the full SHA
    e151df9 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2011

  1. Revert "Merge pull request jquerytools#412 from jessecarl/master"

    This reverts commit e151df9, reversing
    changes made to 0046c59.
    bradrobertson committed Aug 31, 2011
    Configuration menu
    Copy the full SHA
    4b066f9 View commit details
    Browse the repository at this point in the history
  2. 4 Configuration menu
    Copy the full SHA
    1ae09b9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    20a39e5 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2011

  1. Edited README.md via GitHub

    jQuery Tools committed Sep 8, 2011
    Configuration menu
    Copy the full SHA
    94f4f7c View commit details
    Browse the repository at this point in the history
  2. Fix for clicking on the next/prev month button hides calendar.

    If the next/prev month buttons are hidden via visibility: hidden and the user clicks on the area where the button is after it's been hidden, the click event's target ends up being the root node. The code that checks for this expects the event to be a child of the root node instead of the root node itself, so this patch just adds a check for this.
    brewt committed Sep 8, 2011
    Configuration menu
    Copy the full SHA
    ebb5784 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    662fe03 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    66376c9 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'dev' of github.com:jquerytools/jquerytools into dev

    Conflicts:
    	README.md
    brewt committed Sep 8, 2011
    Configuration menu
    Copy the full SHA
    d37be46 View commit details
    Browse the repository at this point in the history