Skip to content

Commit 93c8cac

Browse files
committed
Releasing v3.7.0 - Maintenance release
1 parent b90ebec commit 93c8cac

5 files changed

Lines changed: 16 additions & 8 deletions

File tree

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,18 @@ If you find that you need a feature that SelectBoxIt does not currently support,
7070

7171
##Change Log
7272

73+
`3.7.0` - August 13, 2013
74+
75+
**Bug Fixes**
76+
- Fixed a focus bug that prevented a drop down option to be selected if the drop down menu was open and the page was then scrolled.
77+
- Fixed scroll list not closing bug [#196](https://github.com/gfranko/jquery.selectBoxIt.js/issues/196) [#191](https://github.com/gfranko/jquery.selectBoxIt.js/issues/191)
78+
- Fixed incorrect Microsoft CSS prefix: [#195](https://github.com/gfranko/jquery.selectBoxIt.js/issues/195)
79+
- Fixed max-width rendering for select boxes that are initially hidden: [#192](https://github.com/gfranko/jquery.selectBoxIt.js/issues/192)
80+
- Fixed Native select box and accesibility bug: [#189](https://github.com/gfranko/jquery.selectBoxIt.js/issues/189)
81+
82+
**Improvements**
83+
- ARIA support [#197](https://github.com/gfranko/jquery.selectBoxIt.js/issues/197)
84+
7385
`3.6.0` - June 23, 2013
7486

7587
**BREAKING CHANGES**

index.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -415,10 +415,6 @@
415415

416416
//select.wait(1000, select.open).wait(1000, select.moveDown);
417417

418-
$('select').first().on('focus', function() {
419-
console.log('focused!');
420-
});
421-
422418
});
423419
</script>
424420
</body>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jquery.selectBoxIt",
33
"title": "jquery Selectboxit",
44
"description": "A jQuery plugin that progressively enhances an HTML Select Box into a single option dropdown list. The dropdown list can be optionally styled with jQuery ThemeRoller and optionally animated with jQueryUI show/hide effects.",
5-
"version": "3.6.0",
5+
"version": "3.7.0",
66
"homepage": "http://www.selectboxit.com",
77
"author": {
88
"name": "Greg Franko",

src/javascripts/jquery.selectBoxIt.core.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jquery.selectBoxIt - v3.6.0 - 2013-06-25
1+
/*! jquery.selectBoxIt - v3.7.0 - 2013-08-13
22
* http://www.selectboxit.com
33
* Copyright (c) 2013 Greg Franko; Licensed MIT*/
44

@@ -25,7 +25,7 @@
2525
$.widget("selectBox.selectBoxIt", {
2626

2727
// Plugin version
28-
VERSION: "3.6.0",
28+
VERSION: "3.7.0",
2929

3030
// These options will be used as defaults
3131
options: {

src/stylesheets/jquery.selectBoxIt.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* jquery.selectBoxIt.css 3.6.0
2+
* jquery.selectBoxIt.css 3.7.0
33
* Author: @gregfranko
44
*/
55

0 commit comments

Comments
 (0)