Merge pull request #1946 from JoelGritter/JoelGritter-patch-1

Fix gh-1899: Add Console Warning
This commit is contained in:
Ray Schamp 2018-06-29 10:24:04 -04:00 committed by GitHub
commit ff662b37c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,3 +36,25 @@ const Raven = require('raven-js');
window._locale = updateLocale(); window._locale = updateLocale();
})(); })();
/**
* -----------------------------------------------------------------------------
* Console warning
* -----------------------------------------------------------------------------
*/
(() => {
window.onload = function () {
/* eslint-disable no-console */
console.log('%cStop!', 'color: #F00; font-size: 30px; -webkit-text-stroke: 1px black; font-weight:bold');
console.log(
'This is part of your browser intended for developers. ' +
'If someone told you to copy-and-paste something here, ' +
'don\'t do it! It could allow them to take over your ' +
'Scratch account, delete all of your projects, or do many ' +
'other harmful things. If you don\'t understand what exactly ' +
'you are doing here, you should close this window without doing ' +
'anything.'
);
/* eslint-enable no-console */
};
})();