Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cb9e70a105 | |||
| 63178ed529 | |||
| 630e289b6f |
@@ -16,7 +16,7 @@
|
||||
(function () {
|
||||
"use strict";
|
||||
|
||||
var BOTTOM_MARGIN = 16; // breathing room below the columns
|
||||
var BOTTOM_MARGIN = 20; // breathing room below the columns (covers sub-pixel + borders so nothing overflows)
|
||||
var scheduled = false;
|
||||
|
||||
function apply() {
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
/*
|
||||
* ShrinkVertically -- mark the two vertical-collapse menu items so it is obvious the
|
||||
* behaviour comes from this plugin and not from Kanboard core.
|
||||
* ShrinkVertically page scripts (loaded on every page via template:layout:js). Each runs only where
|
||||
* its elements exist, so both are no-ops elsewhere:
|
||||
*
|
||||
* Core renders these labels in app/Template/project_header/dropdown.php:
|
||||
* .filter-vert-collapse .filter-vert-toggle-collapse -> "Collapse vertically"
|
||||
* .filter-vert-expand .filter-vert-toggle-collapse -> "Expand vertically"
|
||||
* 1. addPlus() -- mark the two vertical-collapse gear-menu items with a trailing "+" so it is
|
||||
* obvious the behaviour comes from this plugin and not core. Core renders these labels in
|
||||
* app/Template/project_header/dropdown.php:
|
||||
* .filter-vert-collapse .filter-vert-toggle-collapse -> "Collapse vertically"
|
||||
* .filter-vert-expand .filter-vert-toggle-collapse -> "Expand vertically"
|
||||
* Editing the rendered text (not the translation table) is locale-independent.
|
||||
*
|
||||
* We append a "+" to each so they read "Collapse vertically+" / "Expand vertically+".
|
||||
* This is locale-independent (it edits the rendered text, not the translation table).
|
||||
* 2. syncAutoAdjust() -- on Settings -> Shrink Vertically, dim + disable the pixel-offset input
|
||||
* while "Auto adjust" is checked. This lives here (not an inline <script> on the config page)
|
||||
* because Kanboard's CSP (default-src 'self') blocks inline scripts and event handlers.
|
||||
*/
|
||||
(function () {
|
||||
"use strict";
|
||||
@@ -26,9 +30,31 @@
|
||||
}
|
||||
}
|
||||
|
||||
if (document.readyState === "loading") {
|
||||
document.addEventListener("DOMContentLoaded", addPlus);
|
||||
} else {
|
||||
function syncAutoAdjust() {
|
||||
var auto = document.getElementById("form-shrink_vertically_auto");
|
||||
var offset = document.getElementById("form-shrink_vertically_offset");
|
||||
|
||||
if (! auto || ! offset) {
|
||||
return;
|
||||
}
|
||||
|
||||
function sync() {
|
||||
offset.disabled = auto.checked;
|
||||
offset.style.opacity = auto.checked ? "0.4" : "";
|
||||
}
|
||||
|
||||
auto.addEventListener("change", sync);
|
||||
sync();
|
||||
}
|
||||
|
||||
function init() {
|
||||
addPlus();
|
||||
syncAutoAdjust();
|
||||
}
|
||||
|
||||
if (document.readyState === "loading") {
|
||||
document.addEventListener("DOMContentLoaded", init);
|
||||
} else {
|
||||
init();
|
||||
}
|
||||
})();
|
||||
|
||||
@@ -59,7 +59,7 @@ class Plugin extends Base
|
||||
|
||||
public function getPluginVersion()
|
||||
{
|
||||
return '1.6.0';
|
||||
return '1.6.3';
|
||||
}
|
||||
|
||||
public function getPluginHomepage()
|
||||
|
||||
@@ -100,7 +100,7 @@ These settings are global (per Kanboard instance) and admin-only. Go to
|
||||
|
||||
AGPL-3.0. See LICENSE.
|
||||
|
||||
## More Kanboard plugins by Ruben (drbeco)
|
||||
## More Kanboard plugins by Dr. Bèco
|
||||
|
||||
All free and AGPL-3.0, at [code.beco.cc](https://code.beco.cc/beco):
|
||||
|
||||
@@ -108,6 +108,10 @@ All free and AGPL-3.0, at [code.beco.cc](https://code.beco.cc/beco):
|
||||
monthly, weekly, daily), driven by the card due date.
|
||||
- **[FinanceBuddy](https://code.beco.cc/beco/FinanceBuddy)** -- attach a money value (debit/credit
|
||||
and installments) to cards, shown on the card and totalled per column.
|
||||
- **[QualKard](https://code.beco.cc/beco/QualKard)** -- flashcard spaced repetition: grade a card by
|
||||
dragging it to a column, and it comes back when due (needs RecoReco).
|
||||
- **[WorkspaceOrg](https://code.beco.cc/beco/WorkspaceOrg)** -- group your projects into personal
|
||||
per-user workspaces, shown on a "My workspaces" dashboard page with a badge on each project.
|
||||
- **[OrganonTweaks](https://code.beco.cc/beco/OrganonTweaks)** -- an umbrella of small
|
||||
quality-of-life board tweaks: remove an empty column, always show the comment icon, emphasize due
|
||||
dates, extra search keywords and shared board filters, and more.
|
||||
|
||||
@@ -37,23 +37,5 @@
|
||||
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script>
|
||||
// Dim + disable the pixel-offset input while "Auto adjust" is checked (auto mode measures the height
|
||||
// live on the board, so the manual offset is inactive). Disabled inputs are not submitted; the
|
||||
// controller preserves the stored offset when it is absent, so the manual value is never lost.
|
||||
(function () {
|
||||
"use strict";
|
||||
var auto = document.getElementById("form-shrink_vertically_auto");
|
||||
var offset = document.getElementById("form-shrink_vertically_offset");
|
||||
if (! auto || ! offset) {
|
||||
return;
|
||||
}
|
||||
function sync() {
|
||||
offset.disabled = auto.checked;
|
||||
offset.style.opacity = auto.checked ? "0.4" : "";
|
||||
}
|
||||
auto.addEventListener("change", sync);
|
||||
sync();
|
||||
})();
|
||||
</script>
|
||||
<?php /* The "Auto adjust" checkbox dims/disables the offset input via Asset/js/shrink-vertically.js
|
||||
(loaded globally). An inline <script> here would be blocked by Kanboard's CSP. */ ?>
|
||||
|
||||
Reference in New Issue
Block a user