Index: trunk/extensions/SemanticForms/specials/SF_CreateTemplate.php |
— | — | @@ -108,23 +108,25 @@ |
109 | 109 | jQuery('#fieldsList').append(newField); |
110 | 110 | } |
111 | 111 | |
112 | | -jQuery(".deleteField").click( function() { |
113 | | - // Remove the encompassing div for this instance. |
114 | | - jQuery(this).closest(".fieldBox") |
115 | | - .fadeOut('fast', function() { jQuery(this).remove(); }); |
116 | | -}); |
117 | | - |
118 | 112 | function validateCreateTemplateForm() { |
119 | 113 | templateName = jQuery('#template_name').val(); |
120 | 114 | if (templateName == '') { |
121 | 115 | scroll(0, 0); |
122 | | - jQuery('#template_name_p').append('<font color="red">$template_name_error_str</font>'); |
| 116 | + jQuery('#template_name_p').append(' <font color="red">$template_name_error_str</font>'); |
123 | 117 | return false; |
124 | 118 | } else { |
125 | 119 | return true; |
126 | 120 | } |
127 | 121 | } |
128 | | -jQuery('#createTemplateForm').submit( function() { return validateCreateTemplateForm(); } ); |
| 122 | + |
| 123 | +jQuery(document).ready(function() { |
| 124 | + jQuery(".deleteField").click( function() { |
| 125 | + // Remove the encompassing div for this instance. |
| 126 | + jQuery(this).closest(".fieldBox") |
| 127 | + .fadeOut('fast', function() { jQuery(this).remove(); }); |
| 128 | + }); |
| 129 | + jQuery('#createTemplateForm').submit( function() { return validateCreateTemplateForm(); } ); |
| 130 | +}); |
129 | 131 | </script> |
130 | 132 | |
131 | 133 | END; |