-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from oizulain/master
JS module support, bug fixes and animationTime
- Loading branch information
Showing
7 changed files
with
77 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
## 1.0.0 | ||
|
||
- Adds a license, code linting, bower.json, package.json, and a build process. | ||
|
||
## 1.0.2 | ||
|
||
- AMD and Node/CommonJS module support. | ||
- Prevents listener from firing when initializing drop down. | ||
- Adds the close drop down listener only once. | ||
- Ability to customize animation time. | ||
- Respecting the drop down holder id. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
"homepage": "https://github.com/jsmodules/ddslick", | ||
"authors": [ | ||
"Prashant Chaudhary (http://designwithpc.com)", | ||
"Brad Berger <[email protected]> (https://bradb.net)" | ||
"Brad Berger <[email protected]> (https://bradb.net)", | ||
"Oier Izulain <[email protected]> (https://github.com/oizulain)" | ||
], | ||
"description": "A free light weight jQuery plugin that allows you to create a custom drop down with images and description.", | ||
"main": "jquery.ddslick.min.js", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "ddslick", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "A free light weight jQuery plugin that allows you to create a custom drop down with images and description.", | ||
"main": "jquery.ddslick.js", | ||
"scripts": { | ||
|
@@ -11,6 +11,9 @@ | |
"url": "git+https://github.com/jsmodules/ddslick.git" | ||
}, | ||
"author": "Brad Berger <[email protected]>", | ||
"contributors": [ | ||
"Oier Izulain <[email protected]> (https://github.com/oizulain)" | ||
], | ||
"license": "MPL-2.0", | ||
"bugs": { | ||
"url": "https://github.com/jsmodules/ddslick/issues" | ||
|
@@ -24,5 +27,6 @@ | |
}, | ||
"dependencies": { | ||
"jquery": "^2.1.4" | ||
} | ||
}, | ||
"keywords": ["jquery", "ddslick", "custom", "dropdown", "plugin", "image"] | ||
} |
Oops, something went wrong.