diff options
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 = {}; |