Revision 4388
Added by ben leinfelder about 16 years ago
header.jsp | ||
---|---|---|
38 | 38 |
<title>FIRST Data Repository</title> |
39 | 39 |
<link rel="stylesheet" type="text/css" |
40 | 40 |
href="<%=STYLE_SKINS_URL%>/first/first.css"></link> |
41 |
<script language="Javascript" type="text/JavaScript" |
|
42 |
src="<%=STYLE_COMMON_URL%>/prototype-1.5.1.1/prototype.js"> |
|
43 |
</script> |
|
44 |
<script language="Javascript" type="text/JavaScript" |
|
45 |
src="<%=STYLE_COMMON_URL%>/effects.js"> |
|
46 |
</script> |
|
47 |
<script language="Javascript"> |
|
48 |
|
|
49 |
function highlight() { |
|
50 |
//Effect.Pulsate('importantThings', { pulses: 1, duration: 2 }); |
|
51 |
//Effect.Fade('importantThings'); |
|
52 |
Effect.Shake('importantThings'); |
|
53 |
} |
|
54 |
</script> |
|
55 |
|
|
41 | 56 |
</head> |
42 | 57 |
|
43 |
<body> |
|
58 |
<body onload="highlight()">
|
|
44 | 59 |
<table width="100%" border="0" cellspacing="0" cellpadding="0"> |
45 | 60 |
<tr valign="top"> |
46 | 61 |
<td width="400"> |
... | ... | |
77 | 92 |
<a href="cart.jsp" target="_top"> |
78 | 93 |
Cart |
79 | 94 |
</a> |
80 |
(Items: <%=docids.length %>, Fields: <%=fields.size() %>) |
|
95 |
<div id="importantThings"> |
|
96 |
(Items: <%=docids.length %>, Fields: <%=fields.size() %>) |
|
97 |
</div> |
|
81 | 98 |
</td> |
82 | 99 |
</tr> |
83 | 100 |
<tr> |
Also available in: Unified diff
added Scriptaculous effects to many of the ajax calls.
neat-o!