]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/Layout/ActionBar.pm
Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / Layout / ActionBar.pm
index 8447ec1b73f8063b1ed4dbdf1656efd8b8c20b29..5345e9e14e72e75f7a9dacdd8f119df80426cfb7 100644 (file)
@@ -10,6 +10,8 @@ use SL::Layout::ActionBar::ComboBox;
 use SL::Layout::ActionBar::Link;
 use SL::Layout::ActionBar::Separator;
 
+use SL::Presenter::Tag qw(html_tag);
+
 use constant HTML_CLASS => 'layout-actionbar';
 
 use Rose::Object::MakeMethods::Generic (
@@ -30,14 +32,14 @@ sub pre_content {
 
   my $content = join '', map { $_->render } @{ $self->actions };
   return if !$content;
-  $::request->presenter->html_tag('div', $content, class => HTML_CLASS);
+  html_tag('div', $content, class => HTML_CLASS);
 }
 
 sub javascripts_inline {
   join '', map { $_->script } @{ $_[0]->actions };
 }
 
-sub javascripts {
+sub static_javascripts {
   'kivi.ActionBar.js'
 }
 
@@ -199,7 +201,7 @@ A string type, followed by the parameters needed for that type. Type may be one
 
 C<separator> will use no parameters, the other three will expect one arrayref.
 
-Two additional pseuso parameters are supported for those:
+Two additional pseudo parameters are supported for those:
 
 =over 4