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

View file

@ -4,9 +4,9 @@
* Created-Date: 15.05.14 * Created-Date: 15.05.14
* Created-Time: 16:21 * Created-Time: 16:21
* Since: 1.0 * Since: 1.0
* Version: 2.1.1d7 * Version: 2.1.1d8
* *
* Last modified: 2020-11-14T2229+0100 * Last modified: 2020-11-16T1424+0100
*/ */

View file

@ -4,9 +4,9 @@
* Created-Date: 15.05.14 * Created-Date: 15.05.14
* Created-Time: 16:21 * Created-Time: 16:21
* Since: 1.0 * Since: 1.0
* Version: 2.1.1d7 * Version: 2.1.1d8
* *
* Last modified: 2020-11-14T2228+0100 * Last modified: 2020-11-16T1423+0100
*/ */

View file

@ -4,7 +4,7 @@
Plugin URI: https://wordpress.org/plugins/footnotes/ Plugin URI: https://wordpress.org/plugins/footnotes/
Description: time to bring footnotes to your website! footnotes are known from offline publishing and everybody takes them for granted when reading a magazine. Description: time to bring footnotes to your website! footnotes are known from offline publishing and everybody takes them for granted when reading a magazine.
Author: Mark Cheret Author: Mark Cheret
Version: 2.1.1d7 Version: 2.1.1d8
Author URI: http://cheret.de/plugins/footnotes-2/ Author URI: http://cheret.de/plugins/footnotes-2/
Text Domain: footnotes Text Domain: footnotes
Domain Path: /languages Domain Path: /languages

View file

@ -80,6 +80,9 @@ Visit this swift write-up from a **footnotes** user by the name of **Southwest**
== Changelog == == Changelog ==
= 2.1.1d8 =
- Bugfix: Libraries: commented out all script loads to check if it fixes a theme incompatibility
= 2.1.1d7 = = 2.1.1d7 =
- Bugfix: Combining identical footnotes: fixed dead links - Bugfix: Combining identical footnotes: fixed dead links

View file

@ -0,0 +1,19 @@
<tr>
<td
class="footnote_plugin_index"
><span
id="footnote_plugin_reference_[[post_id]]_[[id]]"
onclick="footnote_moveToAnchor_[[post_id]]('footnote_plugin_tooltip_[[post_id]]_[[id]]');"
>[[index]]</span
></td>
<td
class="footnote_plugin_link"
><span
onclick="footnote_moveToAnchor_[[post_id]]('footnote_plugin_tooltip_[[post_id]]_[[id]]');"
>[[arrow]]</span
></td>
<td
class="footnote_plugin_text"
>[[text]]</td
>
</tr>

View file

@ -0,0 +1,14 @@
<tr>
<td
id="footnote_plugin_reference_[[post_id]]_[[id]]"
class="footnote_plugin_index"
onclick="footnote_moveToAnchor_[[post_id]]('footnote_plugin_tooltip_[[post_id]]_[[id]]');"
style="cursor: pointer;"
><span
class="footnote_plugin_link"
>[[index]].[[arrow]]</span
></td>
<td
class="footnote_plugin_text"
>[[text]]</td>
</tr>