Javascript und None Layouts verbessert
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 25 Oct 2012 14:38:51 +0000 (16:38 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Thu, 25 Oct 2012 14:38:51 +0000 (16:38 +0200)
Enthält Vorschläge von Ronny Kumke und
behebt #2025

SL/Layout/Javascript.pm
SL/Layout/None.pm

index 6e6d655..a9a1748 100644 (file)
@@ -26,6 +26,7 @@ sub stylesheets {
   $_[0]->add_stylesheets(qw(
     dhtmlsuite/menu-item.css
     dhtmlsuite/menu-bar.css
+    menu.css
   ));
   $_[0]->SUPER::stylesheets;
 }
index 0e65e8a..ac7d5fc 100644 (file)
@@ -9,11 +9,20 @@ sub javascripts_inline {
 }
 
 sub use_javascript {
-  'js/common.js'
+  my $self = shift;
+  qw(
+    js/jquery.js
+    js/common.js
+  ),
+  $self->SUPER::use_javascript(@_);
 }
 
 sub use_stylesheet {
-  'main.css'
+  my $self = shift;
+  qw(
+    main.css
+  ),
+  $self->SUPER::use_stylesheet(@_);
 }
 
 sub _setup_formats {