[Koha-patches] [PATCH] Bug 7953 - add opacuserjs to the sco template

Liz Rea wizzyrea at gmail.com
Fri Apr 13 00:08:58 CEST 2012


To test:
add some jquery to opacuserjs that would change the screen
a la: $(".checkout label[for='patronid']").css("border","3px solid red");
verify you see a red box on the sco-main page.

Also adds the ability to use opacusercss to style sco-main.tt

to test:
Add some css to opacusercss that would change the screen:
.checkout { background: grey; }
verify you see a grey box around the checkout div.
---
 .../opac-tmpl/prog/en/modules/sco/sco-main.tt      |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt
index 646366b..c06bde7 100644
--- a/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt
+++ b/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt
@@ -60,7 +60,13 @@ $(document).ready(function() {
 });
 //]]>
 </script>
+<script type="text/javascript">
+[% IF ( opacuserjs ) %][% opacuserjs %][% END %]
+</script>
+
 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" />
+[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS %]</style>[% END %]
+
 </head>
 <body onload="dofocus();">
 
-- 
1.7.2.5



More information about the Koha-patches mailing list