We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06c36b4 commit fddf475Copy full SHA for fddf475
1 file changed
ableplayer.php.html
@@ -582,7 +582,7 @@
582
if ( ! empty( $all_atts['heading'] ) && 'auto' !== $all_atts['heading'] ) {
583
$o .= ' data-heading-level="' . esc_attr( $all_atts['heading'] ) . '"';
584
}
585
- if ( ! empty( $all_atts['speed'] ) && $all_atts['speed'] !== ableplayer_get_settings( 'default_speed' ) ) {
+ if ( ! empty( $all_atts['speed'] ) && ableplayer_get_settings( 'default_speed' ) !== $all_atts['speed'] ) {
586
$o .= ' data-speed-icons="' . esc_attr( $all_atts['speed'] ) . '"';
587
588
if ( ! empty( $all_atts['start'] ) ) {
@@ -617,7 +617,7 @@
617
618
$o .= '>' . PHP_EOL;
619
620
- $o .= "\t" . $source;
+ $o .= "\t" . $source;
621
622
if ( ! empty( $tracks ) ) {
623
$o .= implode( PHP_EOL . "\t", $tracks );
0 commit comments