From 1ee03bd683e23eb36b4f3a9b0cc773e384167a6e Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 29 Apr 2019 17:55:27 +0200 Subject: Move OC navigation methods to the bundle Signed-off-by: Christoph Wurst --- core/src/OC/navigation.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 core/src/OC/navigation.js (limited to 'core/src/OC/navigation.js') diff --git a/core/src/OC/navigation.js b/core/src/OC/navigation.js new file mode 100644 index 00000000000..c841ed5751e --- /dev/null +++ b/core/src/OC/navigation.js @@ -0,0 +1,31 @@ +/* + * @copyright 2019 Christoph Wurst + * + * @author 2019 Christoph Wurst + * + * @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 . + */ + +/** + * Redirect to the target URL, can also be used for downloads. + * @param {string} targetURL URL to redirect to + */ +export const redirect = targetURL => window.location = targetURL + +/** + * Reloads the current page + */ +export const reload = () => window.location.reload() -- cgit v1.2.3