Skip to content

Commit b9b8d1f

Browse files
committed
Bump.
1 parent 25c7603 commit b9b8d1f

File tree

8 files changed

+14
-6
lines changed

8 files changed

+14
-6
lines changed

readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: johnjamesjacoby, stuttter
33
Tags: jquery, select, chosen
44
Requires at least: 4.6
5-
Tested up to: 4.6
6-
Stable tag: 0.7.0
5+
Tested up to: 4.7
6+
Stable tag: 1.0.0
77
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9Q4F4EL5YJ62J
88

99
Make long, unwieldy select boxes much more user-friendly.
@@ -61,6 +61,9 @@ http://github.com/stuttter/wp-chosen/
6161

6262
== Changelog ==
6363

64+
= 1.0.0 =
65+
* First pass outline styling support for improved accessibility
66+
6467
= 0.7.0 =
6568
* Target `form-wrap` select elements, for taxonomies and such
6669

wp-chosen.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Plugin URI: http://wordpress.org/plugins/wp-chosen/
66
* Author: John James Jacoby
77
* Author URI: http://jjj.me
8-
* Version: 0.7.0
8+
* Version: 1.0.0
99
* Description: Makes long, unwieldy select boxes much more user-friendly.
1010
* License: GPLv2 or later
1111
*/
@@ -18,7 +18,7 @@
1818
function _wp_chosen() {
1919

2020
// Get the plugin path
21-
$plugin_path = plugin_dir_path( __FILE__ );
21+
$plugin_path = plugin_dir_path( __FILE__ ) . 'wp-chosen/';
2222

2323
// Common files
2424
require_once $plugin_path . 'includes/admin.php';
@@ -34,7 +34,7 @@ function _wp_chosen() {
3434
* @return string
3535
*/
3636
function wp_chosen_get_plugin_url() {
37-
return plugin_dir_url( __FILE__ );
37+
return plugin_dir_url( __FILE__ ) . 'wp-chosen/';
3838
}
3939

4040
/**
@@ -45,5 +45,5 @@ function wp_chosen_get_plugin_url() {
4545
* @return int
4646
*/
4747
function wp_chosen_get_asset_version() {
48-
return 201608200001;
48+
return 201609080001;
4949
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@
6868
background: #fff;
6969
height: 29px;
7070
padding: 2px 5px;
71+
outline: none;
72+
}
73+
74+
.chosen-container-active .chosen-single {
75+
outline: auto 5px -webkit-focus-ring-color;
7176
}
7277

7378
.chosen-container-multi .chosen-choices li.search-field input[type=text] {

0 commit comments

Comments
 (0)