Skip to content

Commit

Permalink
fixes #1436
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed Jun 27, 2017
1 parent 0cca119 commit a71252d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/postmessage/class-kirki-modules-postmessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ protected function script_var_typography( $args, $field ) {
( 'text-align' === $property && ! isset( $field['default']['text-align'] ) ) ||
( 'text-transform' === $property && ! isset( $field['default']['text-transform'] ) ) ||
( 'color' === $property && ! isset( $field['default']['color'] ) ) ||
( 'font-weight' === $property && ( ! isset( $field['default']['variant'] ) || ! isset( $field['default']['font-weight'] ) ) ) ||
( 'font-style' === $property && ( ! isset( $field['default']['variant'] ) || ! isset( $field['default']['font-style'] ) ) )
( 'font-weight' === $property && ! isset( $field['default']['variant'] ) && ! isset( $field['default']['font-weight'] ) ) ||
( 'font-style' === $property && ! isset( $field['default']['variant'] ) && ! isset( $field['default']['font-style'] ) )
) ) {
continue;
}
Expand Down

0 comments on commit a71252d

Please sign in to comment.