-
-
Notifications
You must be signed in to change notification settings - Fork 983
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix license check #1359
base: master
Are you sure you want to change the base?
Fix license check #1359
Conversation
@@ -1216,31 +1217,36 @@ | |||
: `Content size recalculated in %c${timer}ms` | |||
} | |||
|
|||
function logSendMsg(message) { | |||
/* eslint-disable no-console */ | |||
console.group(`[iframe-resizer][${myID}]`) |
Check warning
Code scanning / ESLint
Disallow the use of `console` Warning
function logSendMsg(message) { | ||
/* eslint-disable no-console */ | ||
console.group(`[iframe-resizer][${myID}]`) | ||
console.info( |
Check warning
Code scanning / ESLint
Disallow the use of `console` Warning
console.info( | ||
`Sending message to host page via ${sameDomain ? 'sameDomain' : 'postMessage'}`, | ||
) | ||
console.info(`%c${message}`, 'font-style: italic') |
Check warning
Code scanning / ESLint
Disallow the use of `console` Warning
) | ||
console.info(`%c${message}`, 'font-style: italic') | ||
if (timerActive) | ||
console.info(displayTimeTaken(), 'font-weight:bold;color:#777') |
Check warning
Code scanning / ESLint
Disallow the use of `console` Warning
console.info(`%c${message}`, 'font-style: italic') | ||
if (timerActive) | ||
console.info(displayTimeTaken(), 'font-weight:bold;color:#777') | ||
console.groupEnd() |
Check warning
Code scanning / ESLint
Disallow the use of `console` Warning
No description provided.