Sha256: 7fd4566df952c10f63eb50aa8fbe6e22ffdf5c5e87b461f5781d38f701cf478b
Contents?: true
Size: 415 Bytes
Versions: 14
Compression:
Stored size: 415 Bytes
Contents
$(function () { // Fit text area height $('.translations textarea').each(function () { $(this).css({ height: $(this).parent('td').height()}); }); // Mark active textarea $(".translations textarea").bind("focus", function () { $(this).parents("tr").toggleClass('active'); }); $(".translations textarea").bind("blur", function () { $(this).parents("tr").toggleClass('active'); }); });
Version data entries
14 entries across 14 versions & 1 rubygems