diff options
| author | Frédéric Guillot <fred@kanboard.net> | 2014-05-17 17:35:39 -0400 |
|---|---|---|
| committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-17 17:35:39 -0400 |
| commit | 5e4b40665fa11ce0fd0fe957a19e2b7e63f47446 (patch) | |
| tree | b0e458788f84c03608154866ec3e964ec89ccb14 /templates/layout.php | |
| parent | 09da5720e8dccaa2437a7b25d992eaa104753684 (diff) | |
Rewrite board drag and drop with jquery (touch devices, IE, auto-update)
Diffstat (limited to 'templates/layout.php')
| -rw-r--r-- | templates/layout.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/layout.php b/templates/layout.php index 78d62d4e..32925a36 100644 --- a/templates/layout.php +++ b/templates/layout.php @@ -3,6 +3,9 @@ <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> + <script src="assets/js/jquery-1.11.1.min.js"></script> + <script src="assets/js/jquery-ui-1.10.4.custom.min.js"></script> + <script src="assets/js/jquery.ui.touch-punch.min.js"></script> <link rel="stylesheet" href="assets/css/app.css" media="screen"> <link rel="stylesheet" href="assets/css/font-awesome.min.css" media="screen"> <link rel="icon" type="image/png" href="assets/img/favicon.png"> @@ -12,7 +15,7 @@ <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="<?= AUTO_REFRESH_DURATION ?>" > + <meta http-equiv="refresh" content="<?= BOARD_PUBLIC_CHECK_INTERVAL ?>" > <?php endif ?> </head> <body> |
