Blame view

sources/apps/files_texteditor/appinfo/app.php 387 Bytes
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
  <?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');
6d9380f96   Cédric Dupont   Update sources OC...
7
  	OCP\Util::addStyle('files_texteditor', 'mobile');
d1bafeea1   Kload   [fix] Upgrade to ...
8
9
10
  	OCP\Util::addscript('files_texteditor', 'editor');
  	OCP\Util::addscript('files_texteditor', 'vendor/ace/src-noconflict/ace');
  }