Prevent tooltips from displaying when the mouse is over the search or paging controllers.
[quanweb.git] / app / index.html
index 26a0374394ad6c710463cef14e3e5ecd17b39fbf..d2c48d93a288c24c482f0efd58ff876b893f9ee1 100644 (file)
@@ -1,4 +1,4 @@
-<html>
+<html class="no-js">
   <head>
     <title>eBook Library</title>
     <link href="lib.css" rel="stylesheet" type="text/css"/>
@@ -6,8 +6,8 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
   </head>
   
-  <body> 
-    <form>
+  <body onload="onSearch();"
+    <form onmouseenter="ToolTip.stopTooltipTimer();">
       <input id="search" onclick="onSearch();" type="button" value="Search"/> 
       <span class="term">Author: <input id="aut" type="text"/></span>
       <span class="term">Title: <input id="tit" type="text"/></span>
@@ -25,6 +25,7 @@
 
     <div id="details" class="tooltip" onclick="hideDetails();">(No information available)</div>
 
+    <script src="modernizr-custom.js"></script>
     <script src="lib.min.js"></script>
   </body>
 </html>