Sha256: 37cd64920039695e28e665283a7419902e5ee418d81f0922e4a44bc6be2c78df
Contents?: true
Size: 305 Bytes
Versions: 32
Compression:
Stored size: 305 Bytes
Contents
/* simple_visible_toggle.js. Used for toggling visibility of error information. Can possibly be combined with more powerful expand_contract_toggle.js */ jQuery(document).ready(function($) { $("a.simple_visible_toggle").live("click", function() { $(this).next().toggle(); }); });
Version data entries
32 entries across 31 versions & 1 rubygems