Skip to content

Commit

Permalink
Fix Shortcode View
Browse files Browse the repository at this point in the history
  • Loading branch information
Dernerd committed Nov 1, 2023
1 parent 41baaeb commit 57d4c5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/settings.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
jQuery(document).ready(function($) {
$('#fetch_imap').change(function() {
$('#fetch_imap').on('change', function() {
if ($(this).val() == 'enabled')
$('.imap-settings').attr('disabled', false);
else
Expand Down
2 changes: 1 addition & 1 deletion inc/classes/shortcodes/class-abstract-shortcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ abstract class PSource_Support_Shortcode {
public abstract function render( $atts );

public function end() {
echo '</div><div style="clear:both"></div>';
echo '</div><div style="clear:both">';
return ob_get_clean();
}

Expand Down

0 comments on commit 57d4c5a

Please sign in to comment.