-
Notifications
You must be signed in to change notification settings - Fork 159
Pull screen search feature #1256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 5 commits
a614fbe
8e2f4a8
6432dc2
d08608f
816c905
90a5629
1fe1f6c
0d07e65
8818d30
d0be2ff
ec49f39
46be4f1
a8e3680
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,7 +23,7 @@ function() { | |
| add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\enqueue_scripts' ); | ||
| add_filter( 'amp_dev_mode_element_xpaths', __NAMESPACE__ . '\add_element_xpaths' ); | ||
| add_filter( 'script_loader_tag', __NAMESPACE__ . '\add_dev_mode_to_assets', 10, 2 ); | ||
| add_action( 'wp_ajax_dt_load_connections', __NAMESPACE__ . '\get_connections' ); | ||
| add_action( 'wp_ajax_dt_load_connections_push', __NAMESPACE__ . '\get_connections' ); | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm assuming this is for clarity from We're probably stuck with the old name to ensure backward compatibility with the third party extensions and between different versions of the plugin. Otherwise we could go through a soft deprecation.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for pointing it out. I've added the old method back with soft deprecation. LMK if I did it correctly(this is my first time doing it) |
||
| add_action( 'wp_ajax_dt_push', __NAMESPACE__ . '\ajax_push' ); | ||
| add_action( 'admin_bar_menu', __NAMESPACE__ . '\menu_button', 999 ); | ||
| add_action( 'wp_footer', __NAMESPACE__ . '\menu_content', 10, 1 ); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.