source: main/waeup.kofa/trunk/layout/static/js/kofa-button-rowadd.js @ 11587

Last change on this file since 11587 was 11493, checked in by uli, 11 years ago

Add trailing linebreak.

File size: 261 bytes
Line 
1$("button.rowadd").click(function (evt) {
2   /* Do not submit the form really */
3   evt.preventDefault();
4   /* Add first .form-field after last .form-field... */
5   $(".variable-form:last").after(
6       $(".variable-form:first").clone().hide().fadeIn());
7});
Note: See TracBrowser for help on using the repository browser.