Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Introduce Select2 to jump to the desired post in a post type panel #196

Merged
merged 36 commits into from
Jul 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
04b1445
Ensure that post sections are active regardless of dirty
westonruter Jul 8, 2016
0ed0f4b
Add missing data-customize-partial-type for rendered featured images
westonruter Jul 9, 2016
20d2fbe
Remove featured image partials from being added on server
westonruter Jul 9, 2016
376169c
Add missing partial options for data attribute added to rendered feat…
westonruter Jul 9, 2016
e6b0eb4
Fix tests due to removal of WP_Customize_Featured_Image_Controller::a…
westonruter Jul 9, 2016
8ee3a2b
Fix jsdoc
westonruter Jul 10, 2016
db0babe
Rework settings and partials to be loaded and created as needed
westonruter Jul 11, 2016
c20f693
Add select2 dependency
westonruter Jul 11, 2016
188229e
Update wp-plugin-dev-lib 1764efd...449182d: Merge pull request xwp/wp…
westonruter Jul 11, 2016
54d6f7d
Use JavaScript to apply approximate instant previews while waiting fo…
westonruter Jul 11, 2016
f5cd6e5
Sync post section priority with menu_order/post_date_gmt
westonruter Jul 11, 2016
eacac2d
Add todos for eliminating post_date in favor of just post_date_gmt
westonruter Jul 11, 2016
6a5429c
Make text label for add new post a screen reader text; move click log…
westonruter Jul 18, 2016
159cff4
Remove skipping tests
westonruter Jul 18, 2016
561cf1d
Fix inserting a new post
westonruter Jul 18, 2016
22be26a
Add select2 to look up a post to load into the panel on demand
westonruter Jul 19, 2016
769c395
Remove newly-unncessary no-posts-in-preview notice
westonruter Jul 19, 2016
f71ad79
Merge branch 'develop' of https://github.com/xwp/wp-customize-posts i…
westonruter Jul 19, 2016
26c3cad
Auto-navigate to a post in preview when doing lookup
westonruter Jul 19, 2016
205982b
Fix PHP 5.2 compat by removing global namespace sigil
westonruter Jul 19, 2016
4946918
Fix PHP 5.2 support by eliminating anonymous function
westonruter Jul 19, 2016
cf87300
Add tests for featured image controller
westonruter Jul 19, 2016
1429cc0
Add missing coverage for WP_Customize_Postmeta_Controller stubs
westonruter Jul 19, 2016
de1ffb9
Add tests for WP_Customize_Posts::add_support()
westonruter Jul 19, 2016
47dcdf6
Add test for add_customize_nonce
westonruter Jul 19, 2016
315eef6
Add test for WP_Customize_Posts::get_select2_item_result()
westonruter Jul 19, 2016
fa8139a
Fix parsing of postmeta setting ids
westonruter Jul 19, 2016
75a64bf
Fix clobbering of postType by metaKey in parseSettingId
westonruter Jul 19, 2016
af6e54d
Fix yoda conditions
westonruter Jul 19, 2016
17e3725
Replace __DIR__ with dirname( __FILE__ ) for sake of PHP 5.2
westonruter Jul 19, 2016
57e5f97
Add incomplete tests for ajax_fetch_settings and handle_ajax_posts_se…
westonruter Jul 19, 2016
12d7394
Ensure postIds are encoded as an array instead of an object
westonruter Jul 19, 2016
668b978
Skip navigating preview to jumped-post if already queried in preview,…
westonruter Jul 19, 2016
58e6e15
Ensure initial visibility state of post preview link
westonruter Jul 19, 2016
10a6a6b
Fix test method name
westonruter Jul 19, 2016
41ba28d
Fix order of indexOf args for isPostVisibleInPreview
westonruter Jul 19, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,9 @@ composer.lock
# Compiled files
*.min.js
*.min.css

/bower_components/select2/*
!/bower_components/select2/dist
/bower_components/select2/dist/js/*.js
!/bower_components/select2/dist/js/select2.full*
!/bower_components/select2/dist/css/*
7 changes: 7 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "customize-posts",
"homepage": "https://github.com/xwp/wp-customize-posts",
"dependencies": {
"select2": "~4.0.3"
}
}
Loading