diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 19:47:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 19:47:39 +0000 |
commit | 8d13bdc6cac0e20c43c6f909fc0208774b9c5c84 (patch) | |
tree | 5fd46925c6b4a881c9208772ed8e5cc0588bc164 /src/js/bootstrap.js | |
parent | Initial commit. (diff) | |
download | privacybadger-8d13bdc6cac0e20c43c6f909fc0208774b9c5c84.tar.xz privacybadger-8d13bdc6cac0e20c43c6f909fc0208774b9c5c84.zip |
Adding upstream version 2020.10.7.upstream/2020.10.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/js/bootstrap.js')
-rw-r--r-- | src/js/bootstrap.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/js/bootstrap.js b/src/js/bootstrap.js new file mode 100644 index 0000000..7d90ef4 --- /dev/null +++ b/src/js/bootstrap.js @@ -0,0 +1,37 @@ +/* + * This file is part of Privacy Badger <https://www.eff.org/privacybadger> + * Copyright (C) 2014 Electronic Frontier Foundation + * + * Privacy Badger is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3 as + * published by the Free Software Foundation. + * + * Privacy Badger is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Privacy Badger. If not, see <http://www.gnu.org/licenses/>. + */ + +window.DEBUG = false; +window.badger = {}; + +/** +* Log a message to the console if debugging is enabled +*/ +window.log = function (/*...*/) { + if (window.DEBUG) { + console.log.apply(console, arguments); + } +}; + +/** + * Basic implementation of requirejs + * for requiring other javascript files + */ +function require(module) { + return require.scopes[module]; +} +require.scopes = {}; |