removed a whole passel of files that do not need to be tracked in the repository
[kcls-web.git] / opac / skin / craftsman / js / tips.js
diff --git a/opac/skin/craftsman/js/tips.js b/opac/skin/craftsman/js/tips.js
deleted file mode 100644 (file)
index 48fa83a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-attachEvt('result', 'allRecordsReceived', insertTip);
-
-/*
-var user_tips = [
-       'Click on a folder icon in the sidebar to access related quick searches',
-       "If you don't find what you want try expanding your search using the range selector at the right of the search bar"
-];
-*/
-
-function insertTip () {
-       var tip_div = document.getElementById('tips');
-       if (tip_div) {
-               var tips = tip_div.getElementsByTagName('div')[0].getElementsByTagName('span');
-               var index = Math.floor(Math.random() * tips.length);
-        try { tip_div.appendChild( tips[index] ); } catch(E) {}
-               removeCSSClass(tip_div, 'hide_me');
-       }
-}
-