Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/jsloader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2021-04-21 16:08:13 +0300
committerMorris Jobke <hey@morrisjobke.de>2021-04-21 16:08:13 +0300
commit79ac5687b4e0e0a6e98c384f904c45f3727ca78f (patch)
tree3e2723d92756518ad2057c4a91259e6c749e8dc7
parent639b2c7e6423c95d82a0f2fe8b5ed39cab64a9e0 (diff)
Improve code style by unifying whitespace
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r--lib/Controller/JSController.php2
-rw-r--r--lib/Settings/Admin.php5
2 files changed, 3 insertions, 4 deletions
diff --git a/lib/Controller/JSController.php b/lib/Controller/JSController.php
index 2e23004..2d797ee 100644
--- a/lib/Controller/JSController.php
+++ b/lib/Controller/JSController.php
@@ -60,4 +60,4 @@ class JSController extends Controller {
}
return new DataDownloadResponse($jsCode, 'script', 'text/javascript');
}
-} \ No newline at end of file
+}
diff --git a/lib/Settings/Admin.php b/lib/Settings/Admin.php
index c48c4e1..991952a 100644
--- a/lib/Settings/Admin.php
+++ b/lib/Settings/Admin.php
@@ -53,8 +53,8 @@ class Admin implements ISettings {
*/
public function getForm() {
$parameters = [
- 'snippet' => $this->config->getAppValue('jsloader', 'snippet', ''),
- 'url' => $this->config->getAppValue('jsloader', 'url', ''),
+ 'snippet' => $this->config->getAppValue('jsloader', 'snippet', ''),
+ 'url' => $this->config->getAppValue('jsloader', 'url', ''),
'cachebuster' => $this->config->getAppValue('jsloader', 'cachebuster', '0'),
];
@@ -78,5 +78,4 @@ class Admin implements ISettings {
public function getPriority() {
return 70;
}
-
}