ActionBar: normale Link-Elemente nun doch als DIVs rendern & als Buttons stylen
[kivitendo-erp.git] / SL / Layout / ActionBar / Separator.pm
index 9fc172c..cbcdf51 100644 (file)
@@ -3,8 +3,14 @@ package SL::Layout::ActionBar::Separator;
 use strict;
 use parent qw(SL::Layout::ActionBar::Action);
 
+sub from_params { $_[0]->new }
+
 sub render {
   $_[0]->p->html_tag('div', '', class => 'layout-actionbar-separator');
 }
 
+sub script {
+  ()
+}
+
 1;