feature add top horizontal scroll bar done VERSION v1.0 release

This commit is contained in:
2026-06-28 17:12:25 -03:00
parent 5fcf1ffeb1
commit 5712d055d3
5 changed files with 54 additions and 8 deletions

View File

@@ -25,6 +25,13 @@ class Plugin extends Base
// Add a "Shrink Vertically" entry to the Settings sidebar.
$this->template->hook->attach('template:config:sidebar', 'shrinkVertically:config/sidebar');
// Optional: a second, mirrored horizontal scrollbar above the board columns.
if ((int) $this->configModel->get('shrink_vertically_top_scrollbar', 0) === 1) {
$this->hook->on('template:layout:js', array(
'template' => 'plugins/ShrinkVertically/Asset/js/top-scrollbar.js',
));
}
}
public function getPluginName()
@@ -44,7 +51,7 @@ class Plugin extends Base
public function getPluginVersion()
{
return '0.4.0';
return '1.0.0';
}
public function getPluginHomepage()