diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-04-29 18:51:45 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-05-06 10:12:47 +0200 |
commit | 6095ef223562fdf8956663a90d58aa35593c68e0 (patch) | |
tree | c8e4ecf5adc8452cf9308bdf333da4c805deb11a /core/src/OC/debug.js | |
parent | 0877a2e6274ed233eb8773099bceaa32b870195f (diff) | |
download | nextcloud-server-6095ef223562fdf8956663a90d58aa35593c68e0.tar.gz nextcloud-server-6095ef223562fdf8956663a90d58aa35593c68e0.zip |
Move oc_debug to the bundle
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src/OC/debug.js')
-rw-r--r-- | core/src/OC/debug.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/core/src/OC/debug.js b/core/src/OC/debug.js new file mode 100644 index 00000000000..15a66c44aed --- /dev/null +++ b/core/src/OC/debug.js @@ -0,0 +1,24 @@ +/* + * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * + * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +const base = window._oc_debug + +export const debug = base |