Blame view

sources/apps/files_texteditor/appinfo/app.php 336 Bytes
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
7
8
9
  <?php
  
  // only load text editor if the user is logged in
  if (\OCP\User::isLoggedIn()) {
  	OCP\Util::addStyle('files_texteditor', 'DroidSansMono/stylesheet');
  	OCP\Util::addStyle('files_texteditor', 'style');
  	OCP\Util::addscript('files_texteditor', 'editor');
  	OCP\Util::addscript('files_texteditor', 'vendor/ace/src-noconflict/ace');
  }