Skip to content

Commit

Permalink
Merge pull request #2 from oizulain/master
Browse files Browse the repository at this point in the history
JS module support, bug fixes and animationTime
  • Loading branch information
Brad Berger authored Jun 28, 2016
2 parents afcd63c + 37153c6 commit 2f2cb50
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 32 deletions.
6 changes: 5 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
"linebreak-style": [2, "unix"],
"semi": [2, "always"]
},
"globals": { },
"globals": {
"define" : true,
"module" : true,
"require" : true
},
"env": {
"browser": true,
"jquery": true
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
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.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# ddSlick

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

A free light weight jQuery plug-in that allows you to create a custom drop down with images and description.

About this plug-in:

- Adds images and description to html `select` elements
Expand Down
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.ddslick.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions package.json
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": {
Expand All @@ -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"
Expand All @@ -24,5 +27,6 @@
},
"dependencies": {
"jquery": "^2.1.4"
}
},
"keywords": ["jquery", "ddslick", "custom", "dropdown", "plugin", "image"]
}
Loading

0 comments on commit 2f2cb50

Please sign in to comment.