Skip to content

Commit

Permalink
chore: console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Soare-Robert-Daniel committed May 21, 2024
1 parent e388ce9 commit d634dbb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions includes/views/js/import-metabox-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -545,14 +545,13 @@
}
}
} );

$( '.fz-input-tagify[name="feedzy_meta_data[import_post_title]"]:not(.fz-tagify-image)' ).tagify( {
mode: 'mix',
editTags: false,
templates: {
tag: function( tagData ) {
try{
console.log(tagData);
var decodeTagData = decodeURIComponent(tagData.value);
var isEncoded = typeof tagData.value === "string" && decodeTagData !== tagData.value;
var tagLabel = tagData.value;
Expand All @@ -574,7 +573,9 @@
</div>
</tag>`
}
catch(err){}
catch(err){
console.error(err);
}
}
}
} );
Expand Down

0 comments on commit d634dbb

Please sign in to comment.