Skip to content

Commit 2f2cb50

Browse files
author
Brad Berger
authored
Merge pull request #2 from oizulain/master
JS module support, bug fixes and animationTime
2 parents afcd63c + 37153c6 commit 2f2cb50

File tree

7 files changed

+77
-32
lines changed

7 files changed

+77
-32
lines changed

.eslintrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
"linebreak-style": [2, "unix"],
66
"semi": [2, "always"]
77
},
8-
"globals": { },
8+
"globals": {
9+
"define" : true,
10+
"module" : true,
11+
"require" : true
12+
},
913
"env": {
1014
"browser": true,
1115
"jquery": true

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
## 1.0.0
22

33
- Adds a license, code linting, bower.json, package.json, and a build process.
4+
5+
## 1.0.2
6+
7+
- AMD and Node/CommonJS module support.
8+
- Prevents listener from firing when initializing drop down.
9+
- Adds the close drop down listener only once.
10+
- Ability to customize animation time.
11+
- Respecting the drop down holder id.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# ddSlick
22

3+
> A free light weight jQuery plugin that allows you to create a custom drop down with images and description.
4+
35
[![Build Status](https://semaphoreci.com/api/v1/projects/b60c2732-c9e4-4fcf-b335-2b7ad6dcb4e8/628732/badge.svg)](https://semaphoreci.com/jsmodules/ddslick)
46
[![Bower](https://img.shields.io/bower/v/jquery-ddslick.svg?style=flat-square)](http://bower.io/search/?q=ddslick)
57
[![Bower](https://img.shields.io/bower/l/jquery-ddslick.svg?style=flat-square)](https://www.mozilla.org/en-US/MPL/2.0/)
68
[![npm](https://img.shields.io/npm/v/ddslick.svg?style=flat-square)](https://www.npmjs.com/package/ddslick)
79

8-
A free light weight jQuery plug-in that allows you to create a custom drop down with images and description.
9-
1010
About this plug-in:
1111

1212
- Adds images and description to html `select` elements

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"homepage": "https://github.com/jsmodules/ddslick",
44
"authors": [
55
"Prashant Chaudhary (http://designwithpc.com)",
6-
"Brad Berger <[email protected]> (https://bradb.net)"
6+
"Brad Berger <[email protected]> (https://bradb.net)",
7+
"Oier Izulain <[email protected]> (https://github.com/oizulain)"
78
],
89
"description": "A free light weight jQuery plugin that allows you to create a custom drop down with images and description.",
910
"main": "jquery.ddslick.min.js",

dist/jquery.ddslick.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ddslick",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "A free light weight jQuery plugin that allows you to create a custom drop down with images and description.",
55
"main": "jquery.ddslick.js",
66
"scripts": {
@@ -11,6 +11,9 @@
1111
"url": "git+https://github.com/jsmodules/ddslick.git"
1212
},
1313
"author": "Brad Berger <[email protected]>",
14+
"contributors": [
15+
"Oier Izulain <[email protected]> (https://github.com/oizulain)"
16+
],
1417
"license": "MPL-2.0",
1518
"bugs": {
1619
"url": "https://github.com/jsmodules/ddslick/issues"
@@ -24,5 +27,6 @@
2427
},
2528
"dependencies": {
2629
"jquery": "^2.1.4"
27-
}
30+
},
31+
"keywords": ["jquery", "ddslick", "custom", "dropdown", "plugin", "image"]
2832
}

0 commit comments

Comments
 (0)