Bugs are now fixed except fade-in/fade-out, 2.6.0d3.
Hopefully we’ll meet the looming deadline. Thanks for testing and I’ll be reaching out to AMP-WP, in issue #48 to begin with. git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2497474 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
f089e0446a
commit
c8b3eba952
7 changed files with 12 additions and 11 deletions
|
@ -921,9 +921,9 @@ class MCI_Footnotes_Task {
|
|||
* For jQuery tooltip timing @see templates/public/tooltip.html.
|
||||
*/
|
||||
if ( MCI_Footnotes::$a_bool_amp_enabled ) {
|
||||
echo '} span.footnote_referrer > span.footnote_tooltip {';
|
||||
echo 'span.footnote_referrer > span.footnote_tooltip {';
|
||||
} else {
|
||||
echo '} .footnote_tooltip.hidden {';
|
||||
echo '.footnote_tooltip.hidden {';
|
||||
}
|
||||
$l_int_fade_out_delay = intval( MCI_Footnotes_Settings::instance()->get( MCI_Footnotes_Settings::C_INT_MOUSE_OVER_BOX_FADE_OUT_DELAY ) );
|
||||
$l_int_fade_out_duration = intval( MCI_Footnotes_Settings::instance()->get( MCI_Footnotes_Settings::C_INT_MOUSE_OVER_BOX_FADE_OUT_DURATION ) );
|
||||
|
@ -936,7 +936,7 @@ class MCI_Footnotes_Task {
|
|||
if ( MCI_Footnotes::$a_bool_amp_enabled ) {
|
||||
echo 'span.footnote_referrer:focus-within > span.footnote_tooltip, span.footnote_referrer:hover > span.footnote_tooltip {';
|
||||
} else {
|
||||
echo ' .footnote_tooltip.shown {';
|
||||
echo '.footnote_tooltip.shown {';
|
||||
}
|
||||
$l_int_fade_in_delay = intval( MCI_Footnotes_Settings::instance()->get( MCI_Footnotes_Settings::C_INT_MOUSE_OVER_BOX_FADE_IN_DELAY ) );
|
||||
$l_int_fade_in_duration = intval( MCI_Footnotes_Settings::instance()->get( MCI_Footnotes_Settings::C_INT_MOUSE_OVER_BOX_FADE_IN_DURATION ) );
|
||||
|
@ -944,6 +944,7 @@ class MCI_Footnotes_Task {
|
|||
$l_int_fade_in_duration = ! empty( $l_int_fade_in_duration ) ? $l_int_fade_in_duration : '0';
|
||||
echo ' transition-delay: ' . $l_int_fade_in_delay . 'ms;';
|
||||
echo ' transition-duration: ' . $l_int_fade_in_duration . 'ms;';
|
||||
echo "}\r\n";
|
||||
|
||||
}
|
||||
}
|
||||
|
|
2
css/footnotes-amptbrpl0.min.css
vendored
2
css/footnotes-amptbrpl0.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/footnotes-amptbrpl1.min.css
vendored
2
css/footnotes-amptbrpl1.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/footnotes-amptbrpl2.min.css
vendored
2
css/footnotes-amptbrpl2.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/footnotes-amptbrpl3.min.css
vendored
2
css/footnotes-amptbrpl3.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -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
|
||||
* Package V.: 2.6.0d2
|
||||
* Package V.: 2.6.0d3
|
||||
* Version: 2.6.0
|
||||
* CAUTION: THIS V. FIELD IS PARSED FOR UPDATE CONFIGURATION.
|
||||
* Author URI: https://cheret.org/footnotes/
|
||||
|
@ -24,9 +24,9 @@
|
|||
* @since 2.1.4
|
||||
* @since 2.5.3 (Hungarian)
|
||||
* @var str
|
||||
* @lastmodified 2021-03-16T2345+0100
|
||||
* @lastmodified 2021-03-17T0312+0100
|
||||
*/
|
||||
define( 'C_STR_PACKAGE_VERSION', '2.6.0d2' );
|
||||
define( 'C_STR_PACKAGE_VERSION', '2.6.0d3' );
|
||||
|
||||
/**
|
||||
* Version numbers in WordPress plugin readme.txt and main PHP headers.
|
||||
|
|
|
@ -4,7 +4,7 @@ Tags: footnote, footnotes, bibliography, formatting, notes, Post, posts, referen
|
|||
Requires at least: 3.9
|
||||
Tested up to: 5.7
|
||||
Requires PHP: 5.6
|
||||
Package Version: 2.6.0d2
|
||||
Package Version: 2.6.0d3
|
||||
Version: 2.6.0
|
||||
Stable Tag: 2.5.10
|
||||
CAUTION: THE S. T. FIELD IS PARSED FOR RELEASE CONFIGURATION.
|
||||
|
|
Reference in a new issue