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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-02-04 18:53:54 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-02-11 10:47:44 +0300
commit75d52dea17a72054538ddcc0904052c98b819a6a (patch)
treee60a039c7b41da0a822c623ceeb6678b72ea540b /apps/systemtags/appinfo
parentd576ffd4873448501e848a7dd937981ac69499dd (diff)
Move core/systemtags to webpack
* Use webpack to bundle the core systemtags so the webserver can serve them statically * Bundle the core scss in there as well (saves a request) Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/systemtags/appinfo')
-rw-r--r--apps/systemtags/appinfo/app.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/systemtags/appinfo/app.php b/apps/systemtags/appinfo/app.php
index 6f478273487..0fcf4134864 100644
--- a/apps/systemtags/appinfo/app.php
+++ b/apps/systemtags/appinfo/app.php
@@ -33,9 +33,8 @@ $eventDispatcher->addListener(
'OCA\Files::loadAdditionalScripts',
function() {
// FIXME: no public API for these ?
- \OCP\Util::addScript('systemtags/merged');
+ \OCP\Util::addScript('dist/systemtags');
\OCP\Util::addScript('systemtags', 'merged');
- \OCP\Util::addStyle('systemtags');
\OCP\Util::addStyle('systemtags', 'systemtagsfilelist');
}
);