</label>
<% end %>
<%= hidden_field_tag 'project[enabled_module_names][]', '' %>
-<%= javascript_tag 'observeProjectModules()' %>
</fieldset>
<% end %>
});
<% end %>
<% end %>
+
+<%= javascript_tag do %>
+$(document).ready(function() {
+ $('#project_enabled_module_names_issue_tracking').on('change', function(){
+ if ($(this).attr('checked')){
+ $('#project_trackers, #project_issue_custom_fields').show();
+ } else {
+ $('#project_trackers, #project_issue_custom_fields').hide();
+ }
+ }).trigger('change');
+});
+<% end %>
});
}
-function observeProjectModules() {
- var f = function() {
- /* Hides trackers and issues custom fields on the new project form when issue_tracking module is disabled */
- if ($('#project_enabled_module_names_issue_tracking').attr('checked')) {
- $('#project_trackers').show();
- } else {
- $('#project_trackers').hide();
- }
- };
-
- $(window).load(f);
- $('#project_enabled_module_names_issue_tracking').change(f);
-}
-
function initMyPageSortable(list, url) {
$('#list-'+list).sortable({
connectWith: '.block-receiver',