development 2.1.1d8 commented out all script loads to check if it fixes a theme incompatibility

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2419373 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
pewgeuges 2020-11-16 13:28:41 +00:00
parent 37ae1474ed
commit d2e72d37ee
7 changed files with 53 additions and 17 deletions

View file

@ -119,17 +119,17 @@ class MCI_Footnotes {
//### SCRIPTS
// enqueue the jQuery plugin registered by WordPress:
wp_enqueue_script( 'jquery' );
// enqueue jQuery UI libraries registered by WordPress, needed for tooltips:
wp_enqueue_script( 'jquery-ui-core' );
wp_enqueue_script( 'jquery-ui-widget' );
wp_enqueue_script( 'jquery-ui-position' );
wp_enqueue_script( 'jquery-ui-tooltip' );
// enqueue jQuery Tools:
wp_enqueue_script('mci-footnotes-js-jquery-tools', plugins_url('../js/jquery.tools.min.js', __FILE__));
// // enqueue the jQuery plugin registered by WordPress:
// wp_enqueue_script( 'jquery' );
//
// // enqueue jQuery UI libraries registered by WordPress, needed for tooltips:
// wp_enqueue_script( 'jquery-ui-core' );
// wp_enqueue_script( 'jquery-ui-widget' );
// wp_enqueue_script( 'jquery-ui-position' );
// wp_enqueue_script( 'jquery-ui-tooltip' );
//
// // enqueue jQuery Tools:
// wp_enqueue_script('mci-footnotes-js-jquery-tools', plugins_url('../js/jquery.tools.min.js', __FILE__));
// Alternatively, fetch jQuery UI from cdnjs.cloudflare.com:
@ -151,7 +151,7 @@ class MCI_Footnotes {
'mci-footnotes-css-public',
plugins_url('../css/public.css', __FILE__),
'',
'2.1.1d7'
'2.1.1d8'
);
}