Version Description
Download this release
Release Info
Developer | adampickering |
Plugin | Regions for WP Job Manager |
Version | 1.10.0 |
Comparing to | |
See all releases |
Code changes from version 1.9.1 to 1.10.0
- assets/js/main.js +6 -2
- readme.txt +8 -4
- wp-job-manager-locations.php +1 -1
assets/js/main.js
CHANGED
@@ -25,7 +25,9 @@
|
|
25 |
},
|
26 |
|
27 |
addSubmission: function() {
|
28 |
-
$( '#job_region' ).chosen(
|
|
|
|
|
29 |
},
|
30 |
|
31 |
addRegions: function() {
|
@@ -41,7 +43,9 @@
|
|
41 |
location.removeClass( 'search_location' ).addClass( 'search_region' );
|
42 |
|
43 |
$regions.detach().appendTo(location);
|
44 |
-
$regions.chosen(
|
|
|
|
|
45 |
});
|
46 |
},
|
47 |
|
25 |
},
|
26 |
|
27 |
addSubmission: function() {
|
28 |
+
$( '#job_region' ).chosen({
|
29 |
+
search_contains: true
|
30 |
+
});
|
31 |
},
|
32 |
|
33 |
addRegions: function() {
|
43 |
location.removeClass( 'search_location' ).addClass( 'search_region' );
|
44 |
|
45 |
$regions.detach().appendTo(location);
|
46 |
+
$regions.chosen({
|
47 |
+
search_contains: true
|
48 |
+
});
|
49 |
});
|
50 |
},
|
51 |
|
readme.txt
CHANGED
@@ -2,12 +2,12 @@
|
|
2 |
|
3 |
Author URI: http://astoundify.com
|
4 |
Plugin URI: http://astoundify.com
|
5 |
-
Donate link: https://www.paypal.
|
6 |
Contributors: Astoundify
|
7 |
Tags: job, job listing, job region
|
8 |
-
Requires at least: 4.
|
9 |
-
Tested up to: 4.
|
10 |
-
Stable Tag: 1.
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
13 |
|
@@ -32,6 +32,10 @@ Astoundify has released two themes that are fully integrated with the WP Job Man
|
|
32 |
|
33 |
== Changelog ==
|
34 |
|
|
|
|
|
|
|
|
|
35 |
= 1.9.1: October 30, 2015 =
|
36 |
|
37 |
* Fix: Verify the region exists for alerts.
|
2 |
|
3 |
Author URI: http://astoundify.com
|
4 |
Plugin URI: http://astoundify.com
|
5 |
+
Donate link: https://www.paypal.me/astoundify
|
6 |
Contributors: Astoundify
|
7 |
Tags: job, job listing, job region
|
8 |
+
Requires at least: 4.4
|
9 |
+
Tested up to: 4.4.*
|
10 |
+
Stable Tag: 1.10.0
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
13 |
|
32 |
|
33 |
== Changelog ==
|
34 |
|
35 |
+
= 1.10.0: February 5, 2016 =
|
36 |
+
|
37 |
+
* New: Use `search_contains` to search less strictly.
|
38 |
+
|
39 |
= 1.9.1: October 30, 2015 =
|
40 |
|
41 |
* Fix: Verify the region exists for alerts.
|
wp-job-manager-locations.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Create predefined regions/locations that job submissions can associate themselves with.
|
6 |
* Author: Astoundify
|
7 |
* Author URI: http://astoundify.com
|
8 |
-
* Version: 1.
|
9 |
* Text Domain: wp-job-manager-locations
|
10 |
*/
|
11 |
|
5 |
* Description: Create predefined regions/locations that job submissions can associate themselves with.
|
6 |
* Author: Astoundify
|
7 |
* Author URI: http://astoundify.com
|
8 |
+
* Version: 1.10.0
|
9 |
* Text Domain: wp-job-manager-locations
|
10 |
*/
|
11 |
|