Skip to content

Commit cc3df32

Browse files
author
Marc J. Schmidt
committed
Prepare for release v1.2.
1 parent b7d1afd commit cc3df32

File tree

4 files changed

+53
-4
lines changed

4 files changed

+53
-4
lines changed

changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Changelog
2+
=========
3+
4+
v1.2.0
5+
------
6+
b7d1afd - Made sure we have a object as `settings`. Added small readme adjustments. [marcj]
7+
05ccb3c - Restoring dropdown state after calling 'refresh'. Fixes marcj/jquery-selectBox#85. [Pavel Horal]
8+
34845fb - Cleaned. [marcj]
9+
3441eba - Cleaned more code/text. [marcj]
10+
b748694 - Fixed the `setOptions` method, where the wrong variable has been used. [marcj]
11+
cf61fdd - Implemented a `mobile` switch. Added prettified settings table. Fixed #111 [marcj]
12+
fe46e1e - Cleaned/Refactored the javascript/css code. Compressed the newest version into `min.js`. [marcj]
13+
99c004c - Updated for ownership transfer [Cory LaViska]
14+
1e9224d - Updated readme [Cory LaViska]
15+
f12ac8f - Fix init parameters [Simon Garner]
16+
5c4ad19 - Fix type-to-find behaviour [Simon Garner]
17+
a942b05 - Updated readme [Cory LaViska]
18+
e0ccf35 - Updated readme [Cory LaViska]
19+
648c1c9 - IE7 js error fix (tabindex cannot be NaN) [MAJESTIC]
20+
dfa5a4d - Changed Tab characters. [Uriy Efremochkin]
21+
662c382 - Fix the bug with incorrect calculation of the Label width. [Uriy Efremochkin]
22+
f8c1551 - added check for mouse button to mouseup events as well [Haralan Dobrev]
23+
b63f367 - added checks for the button clicked on mousedown events [Haralan Dobrev]

jquery.selectBox.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Licensed under the MIT license: http://opensource.org/licenses/MIT
55
*
6-
* v1.2.0-dev
6+
* v1.2.0
77
*
88
* https://github.com/marcj/jquery-selectBox
99
*/
@@ -47,7 +47,7 @@
4747
/**
4848
* @type {String}
4949
*/
50-
SelectBox.prototype.version = '1.2.0-dev';
50+
SelectBox.prototype.version = '1.2.0';
5151

5252
/**
5353
* @param {Object} options

jquery.selectBox.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "jquery.selectBox",
3+
"title": "jquery SelectBox",
4+
"description": "A styleable replacement for SELECT elements.",
5+
"version": "v1.2.0",
6+
"keywords": ["select", "jQuery select", "selectBox", "jQuery"],
7+
"homepage": "https://github.com/marcj/jquery-selectBox",
8+
"author": {
9+
"name": "Marc J. Schmidt",
10+
"email": "[email protected]",
11+
"url": "http://marcjschmidt.de"
12+
},
13+
"licenses": [
14+
{
15+
"type": "MIT",
16+
"url": "http://opensource.org/licenses/MIT"
17+
}
18+
],
19+
"repository": {
20+
"type": "git",
21+
"url": "git://github.com/marcj/jquery-selectBox.git"
22+
},
23+
"bugs": {
24+
"url": "https://github.com/marcj/jquery-selectBox/issues"
25+
}
26+
}

0 commit comments

Comments
 (0)