From 3083d6ad6e259b46bd205f391ac4a569cb66f418 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Thu, 7 Mar 2013 10:49:53 -0500
Subject: [PATCH] Bug 9456 - Add callnumber column to the cart - add tooltip

---
 .../intranet-tmpl/prog/en/modules/basket/basket.tt |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt
index 90269db..65169f5 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt
@@ -67,6 +67,7 @@ function placeHold () {
 }
 
 	$(document).ready(function(){
+                $("#items-tooltip").tooltip();
 		$("#CheckAll").click(function(){
 		var checked = [];
 		$("#bookbag_form").checkCheckboxes("*", true).each(
@@ -355,7 +356,7 @@ function placeHold () {
 	    [% UNLESS ( print_basket ) %]<th>&nbsp;</th>[% END %]
 	    <th>Title</th>
         <th>Item type</th>
-        <th>Items</th>
+        <th><a id="items-tooltip" href="#" data-toggle="tooltip" title="Items are sorted by the highest or lowest callnumber in a group of items respectively.">Items</a></th>
         </tr></thead>
 
         [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
-- 
1.7.2.5