Skip to content

Commit

Permalink
Merge branch 'development' into fix/feeds-import-cron
Browse files Browse the repository at this point in the history
  • Loading branch information
Soare-Robert-Daniel authored Mar 4, 2024
2 parents 92855c5 + fa82512 commit 553e74d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion includes/views/import-metabox-edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ class="form-control fz-textarea-tagify"><?php echo esc_html( feedzy_custom_tag_e
</div>
<div class="help-text">
<?php
esc_html_e( 'You can use the magic tags, your own URL or leave it empty.', 'feedzy-rss-feeds' );
esc_html_e( 'You can use the magic tags, or leave it empty.', 'feedzy-rss-feeds' );
?>
</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions includes/views/js/import-metabox-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
$( '.feedzy-keyword-filter, #feedzy-import-source' ).on('keyup keypress', function(e) {
var keyCode = e.keyCode || e.which;
var addTagBtn = $( this ).parents( '.fz-input-icon' ).find( '.add-outside-tags' );

if ( '' === $( this ).val() ) {
addTagBtn.attr( 'disabled', true );
} else if ( addTagBtn.hasClass( 'fz-plus-btn' ) ) {
Expand Down Expand Up @@ -481,8 +481,8 @@
// Tagify for normal mix content field.
$( '.fz-tagify-image' ).tagify( {
mode: 'mix',
editTags: false,
userInput: false,
editTags: true,
userInput: true,
addTagOn: [],
templates: {
tag: function(tagData) {
Expand Down Expand Up @@ -836,4 +836,4 @@
$( '.feedzy-open-media' ).html( feedzy.i10n.action_btn_text_1 );
});
}
})(jQuery, feedzy);
}(jQuery, feedzy));

0 comments on commit 553e74d

Please sign in to comment.