Don't load Javascript assets for public board access

This commit is contained in:
Frédéric Guillot 2014-09-16 15:05:07 +02:00
parent 1c295d4d65
commit aca4207a94
4 changed files with 14 additions and 10 deletions

View File

@ -178,6 +178,7 @@ class Board extends Base
'title' => $project['name'],
'no_layout' => true,
'auto_refresh' => true,
'not_editable' => true,
)));
}

View File

@ -76,6 +76,7 @@ class Task extends Base
'title' => $task['title'],
'no_layout' => true,
'auto_refresh' => true,
'not_editable' => true,
)));
}

View File

@ -2,16 +2,21 @@
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="mobile-web-app-capable" content="yes">
<meta name="robots" content="noindex,nofollow">
<?= Helper\js('assets/js/jquery-1.11.1.min.js') ?>
<?= Helper\js('assets/js/jquery-ui-1.10.4.custom.min.js') ?>
<?= Helper\js('assets/js/jquery.ui.touch-punch.min.js') ?>
<?= Helper\js('assets/js/chosen.jquery.min.js') ?>
<?= Helper\js('assets/js/app.js') ?>
<?php if (isset($auto_refresh)): ?>
<meta http-equiv="refresh" content="<?= BOARD_PUBLIC_CHECK_INTERVAL ?>" >
<?php endif ?>
<?php if (! isset($not_editable)): ?>
<?= Helper\js('assets/js/jquery-1.11.1.min.js') ?>
<?= Helper\js('assets/js/jquery-ui-1.10.4.custom.min.js') ?>
<?= Helper\js('assets/js/jquery.ui.touch-punch.min.js') ?>
<?= Helper\js('assets/js/chosen.jquery.min.js') ?>
<?= Helper\js('assets/js/app.js') ?>
<?php endif ?>
<?= Helper\css('assets/css/app.css') ?>
<?= Helper\css('assets/css/font-awesome.min.css') ?>
@ -25,9 +30,6 @@
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/touch-icon-ipad-retina.png">
<title><?= isset($title) ? Helper\escape($title).' - Kanboard' : 'Kanboard' ?></title>
<?php if (isset($auto_refresh)): ?>
<meta http-equiv="refresh" content="<?= BOARD_PUBLIC_CHECK_INTERVAL ?>" >
<?php endif ?>
</head>
<body>
<?php if (isset($no_layout) && $no_layout): ?>

View File

@ -29,4 +29,4 @@ $loader->execute();
$registry = new Registry;
$registry->db = setup_db();
$registry->event = setup_events();
$registry->mailer = setup_mailer();
$registry->mailer = function() { return setup_mailer(); };