Parent Directory
|
Revision Log
|
Revision Graph
Some tweaks to account for taxonomy, and hiding the not-yet-working preview thumbnail when JS is off.
| 1 | // $Id: amazon.admin.js,v 1.1 2008/02/22 05:04:30 eaton Exp $ |
| 2 | |
| 3 | jQuery(document).ready(function(){ |
| 4 | jQuery("div#simpleviews-elements").prepend('<div id="simpleview-preview-img"></div>'); |
| 5 | jQuery("#edit-arg-toggle").bind("change", function() { |
| 6 | if (this.checked) { |
| 7 | $("#simpleviews-arg-wrapper").show(); |
| 8 | } |
| 9 | else { |
| 10 | $("#simpleviews-arg-wrapper").hide(); |
| 11 | } |
| 12 | return false; |
| 13 | }) |
| 14 | }); |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |