add touch support for interactive 360
This commit is contained in:
parent
1ed7aa9c5b
commit
da973da1ce
2 changed files with 66 additions and 48 deletions
|
|
@ -1,23 +1,23 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'debug' => true,
|
||||
'debug' => true,
|
||||
'smartypants' => true,
|
||||
'locale' => 'fr_FR.utf-8',
|
||||
'date' => [
|
||||
'handler' => 'intl'
|
||||
'locale' => 'fr_FR.utf-8',
|
||||
'date' => [
|
||||
'handler' => 'intl',
|
||||
],
|
||||
'api' => [
|
||||
'basicAuth' => true,
|
||||
// Enable api access without SSL. To disable in production.
|
||||
'allowInsecure' => true
|
||||
'allowInsecure' => true,
|
||||
],
|
||||
'panel' => [
|
||||
'language' => 'fr',
|
||||
'css' => 'assets/css/panel.css',
|
||||
'js' => 'assets/js/panel.js',
|
||||
'favicon' => 'favicon.svg',
|
||||
'menu' => require(__DIR__ . '/menu.php'),
|
||||
'css' => 'assets/css/panel.css',
|
||||
'js' => 'assets/js/panel.js',
|
||||
'favicon' => 'favicon.svg',
|
||||
'menu' => require(__DIR__ . '/menu.php'),
|
||||
],
|
||||
'routes' => [
|
||||
require(__DIR__ . '/routes/logout.php'),
|
||||
|
|
@ -32,7 +32,7 @@ return [
|
|||
require(__DIR__ . '/routes/request-optimization-appointment.php'),
|
||||
],
|
||||
'hooks' => [
|
||||
'page.create:after' => require_once(__DIR__ . '/hooks/create-steps.php'),
|
||||
'page.create:after' => require_once(__DIR__ . '/hooks/create-steps.php'),
|
||||
'page.delete:before' => require_once(__DIR__ . '/hooks/delete-steps.php'),
|
||||
]
|
||||
],
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue