X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/Layout/ActionBar/Separator.pm?ds=inline diff --git a/SL/Layout/ActionBar/Separator.pm b/SL/Layout/ActionBar/Separator.pm new file mode 100644 index 000000000..afa202e8f --- /dev/null +++ b/SL/Layout/ActionBar/Separator.pm @@ -0,0 +1,18 @@ +package SL::Layout::ActionBar::Separator; + +use strict; +use parent qw(SL::Layout::ActionBar::Action); + +use SL::Presenter::Tag qw(html_tag); + +sub from_params { $_[0]->new } + +sub render { + html_tag('div', '', class => 'layout-actionbar-separator'); +} + +sub script { + () +} + +1;