Skip to content

Commit

Permalink
ensure it has an option to return early
Browse files Browse the repository at this point in the history
  • Loading branch information
kangzj committed Oct 10, 2024
1 parent 48a6d9c commit 573c05f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions projects/packages/jitm/src/js/jetpack-jitm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import jQuery from 'jquery';
import '../css/jetpack-admin-jitm.scss';

const initJetpackJITM = function ( $ ) {
if( window.hasRunJetpackJITM ) {
return;
}
var templates = {
default: function ( envelope ) {
const EXTERNAL_LINK_ICON = `
Expand Down

0 comments on commit 573c05f

Please sign in to comment.