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

Add option to close guider upon clicking outside #87

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Jan 27, 2013

  1. First commit of the dev branch and beginning of version 2.0.0! Change…

    …log:
    
    - Started keeping a changelog in changelog.txt.
    - Since this is a major change, I am incrementing the version number to 2.0.0. (Following Semantic Versioning, http://semver.org/)
    - Created a dev branch on GitHub. (https://github.com/jeff-optimizely/Guiders-JS/tree/dev) Contributors, issue pull requests to the dev branch so I can safely pull them without worrying about screwing up master code.
    - Changed the file names from guiders-(version).js and guiders-(version).css to simply guiders.js and guiders.css, so that it's easier to track changes in GitHub. If you want to know what version you have, just open the file or check guiders.version.
    - Upgraded jQuery from 1.51 to 1.90. It should still work with older versions of jQuery.
    - Use var guiders = this.guiders = {}; instead of var guiders = (function() { ... }) in order for guiders to attach to the window object more reliably. (Thanks @spmason spmason@7229f66#commitcomment-2506855)
    - Added bower support in component.json (Thanks rajkissu pickhardt#78)
    - Added a method: guiders.getCurrentGuider, to get the current guider. This can be useful for analytics tracking, for example.
    - guiders.next and guiders.prev return the value of guiders.getCurrent()
    - Allow creating guidres in the HTML, then creating guiders via $("#guider2").guider(options).  The options can be passed in through options or set as data-attrs on the object in the HTML. (Thanks @tarr11 pickhardt#85)
    pickhardt committed Jan 27, 2013
    Configuration menu
    Copy the full SHA
    1b8bb32 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2013

  1. Add closeOnClickOutside option to close guider upon click outside.

    Change-Id: Id5e6d001d3a42454680af21c2e96b068be464221
    Matthew Flaschen committed Feb 2, 2013
    1 Configuration menu
    Copy the full SHA
    9f7900d View commit details
    Browse the repository at this point in the history