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:
parent
37ae1474ed
commit
d2e72d37ee
7 changed files with 53 additions and 17 deletions
|
@ -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'
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
* Created-Date: 15.05.14
|
||||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
* Version: 2.1.1d7
|
||||
* Version: 2.1.1d8
|
||||
*
|
||||
* Last modified: 2020-11-14T2229+0100
|
||||
* Last modified: 2020-11-16T1424+0100
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
* Created-Date: 15.05.14
|
||||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
* Version: 2.1.1d7
|
||||
* Version: 2.1.1d8
|
||||
*
|
||||
* Last modified: 2020-11-14T2228+0100
|
||||
* Last modified: 2020-11-16T1423+0100
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
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.
|
||||
Author: Mark Cheret
|
||||
Version: 2.1.1d7
|
||||
Version: 2.1.1d8
|
||||
Author URI: http://cheret.de/plugins/footnotes-2/
|
||||
Text Domain: footnotes
|
||||
Domain Path: /languages
|
||||
|
|
|
@ -80,6 +80,9 @@ Visit this swift write-up from a **footnotes** user by the name of **Southwest**
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 2.1.1d8 =
|
||||
- Bugfix: Libraries: commented out all script loads to check if it fixes a theme incompatibility
|
||||
|
||||
= 2.1.1d7 =
|
||||
- Bugfix: Combining identical footnotes: fixed dead links
|
||||
|
||||
|
|
19
templates/public/reference-container-body-3column.html
Normal file
19
templates/public/reference-container-body-3column.html
Normal 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>
|
14
templates/public/reference-container-body-switch.html
Normal file
14
templates/public/reference-container-body-switch.html
Normal 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>
|
Reference in a new issue